PHP 类启动错误?

发布于 2024-11-16 20:24:24 字数 161 浏览 0 评论 0原文

如果 $test 的名称不存在,我

$test = 'SomeClass';
$ins = new $test;

希望能够捕获错误。

我不确定它抛出了什么类型的异常,因为 PHP 没有给我任何东西。

I have

$test = 'SomeClass';
$ins = new $test;

I want to be able to catch the error if the name for $test doesn't exist.

I'm not sure what type of exception it threw as PHP didn't gave me anything.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

临风闻羌笛 2024-11-23 20:24:25

使用class_exists()

首先检查如下:

if(class_exists($test)){
    $ins = new $test;
}else{
    die("Could not load class'" . $test ."'");
}

Use class_exists().

Check first like this:

if(class_exists($test)){
    $ins = new $test;
}else{
    die("Could not load class'" . $test ."'");
}
倾城泪 2024-11-23 20:24:25

这样的结构不会让你捕获任何错误,除非你使用一些 错误处理程序。但是,您可以使用 class_exists()< 检查类是否存在/代码>函数

附言。您应该使用反射,因为它更加详细和清晰。它还使用异常,因此您可以执行以下操作:

try {
    $ref = new \ReflectionClass($className);
} catch (\LogicException $le) {
    // class probably doesn't exist
}

Such a construction won't let you catch any errors unless you use some error handler. However you can check whether class exists or not using class_exists() function.

PS. You should use reflection as it is much more verbose and clear. Also it uses exceptions so you can do something like:

try {
    $ref = new \ReflectionClass($className);
} catch (\LogicException $le) {
    // class probably doesn't exist
}
半窗疏影 2024-11-23 20:24:25

使用 PHP 5.3(或更高版本),您可以捕获从 __autoload 引发的异常

function __autoload($name) {
    // if class doesn't exist:
        throw new Exception("Class $name not found");
    // else, load class source
}


$test = 'SomeClass';    
try {
    $ins = new $test;
} catch (Exception $e) {

}

With PHP 5.3 (or greater), you can catch exceptions thrown from __autoload

function __autoload($name) {
    // if class doesn't exist:
        throw new Exception("Class $name not found");
    // else, load class source
}


$test = 'SomeClass';    
try {
    $ins = new $test;
} catch (Exception $e) {

}
春花秋月 2024-11-23 20:24:25

首先,您必须测试 $test 类是否存在。
http://php.net/manual/en/function.class-exists.php

first, you must test if $test class exists.
http://php.net/manual/en/function.class-exists.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文