5

有没有办法从 PHP 中的 SPL 自动加载器抛出异常,以防万一失败?它似乎不适用于 PHP 5.2.11。

class SPLAutoLoader{

    public static function autoloadDomain($className) {
        if(file_exists('test/'.$className.'.class.php')){
            require_once('test/'.$className.'.class.php');
            return true;
        }       

        throw new Exception('File not found');
    }

} //end class

//start
spl_autoload_register( array('SPLAutoLoader', 'autoloadDomain') );

try{
    $domain = new foobarDomain();
}catch(Exception $c){
    echo 'File not found';
}

调用上述代码时,没有异常迹象,而是得到一个标准的“致命错误:在 bla 中找不到类 'foobarDomain'”。并且脚本的执行终止。

4

3 回答 3

20

这不是错误,而是设计决定

注意:函数中抛出的异常__autoload不能在catch块中捕获并导致致命错误。

原因是可能有多个自动加载处理程序,在这种情况下,您不希望第一个处理程序抛出异常并绕过第二个处理程序。您希望您的第二个处理程序有机会自动加载其类。如果您使用使用自动加载功能的库,您不希望它绕过您的自动加载处理程序,因为它们会在其自动加载器中抛出异常。

如果要检查是否可以实例化一个类,则使用并作为第二个参数class_exists传递(或将其省略,这是默认值):truetrue

if (class_exists('foobarDomain', $autoload = true)) {
    $domain = new foobarDomain();
} else {
    echo 'Class not found';
}
于 2009-10-19T15:06:09.450 回答
2

根据spl_autoload_register 文档中的注释,可以从自动加载器调用另一个函数,这反过来会引发异常。

class SPLAutoLoader{

    public static function autoloadDomain($className) {
        if(file_exists('test/'.$className.'.class.php')){
            require_once('test/'.$className.'.class.php');
            return true;
        }       
        self::throwFileNotFoundException();
    }

    public static function throwFileNotFoundException()
    {
        throw new Exception('File not found');
    }

} //end class

//start
spl_autoload_register( array('SPLAutoLoader', 'autoloadDomain') );

try{
    $domain = new foobarDomain();
}catch(Exception $c){
    echo 'File not found';
}
于 2009-10-16T18:16:28.310 回答
1

这是一个成熟的工厂对象,它演示了自动加载、命名空间支持、来自非静态实例(具有可变路径)的可调用对象、加载错误和自定义异常的处理。

abstract class AbstractFactory implements \ArrayAccess
{
    protected $manifest;
    function __construct($manifest)
    {
        $this->manifest = $manifest;
    }

    abstract function produce($name);

    public function offsetExists($offset)
    {
        return isset($this->manifest[$offset]);
    }

    public function offsetGet($offset)
    {
        return $this->produce($offset);
    }
    //implement stubs for other ArrayAccess funcs
}


abstract class SimpleFactory extends AbstractFactory {

    protected $description;
    protected $path;
    protected $namespace;

    function __construct($manifest, $path, $namespace = "jj\\") {
        parent::__construct($manifest);
        $this->path = $path;
        $this->namespace = $namespace;
        if (! spl_autoload_register(array($this, 'autoload'), false)) //throws exceptions on its own, but we want a custom one
            throw new \RuntimeException(get_class($this)." failed to register autoload.");
    }

    function __destruct()
    {
        spl_autoload_unregister(array($this, 'autoload'));
    }

    public function autoload($class_name) {
        $file = str_replace($this->namespace, '', $class_name);
        $filename = $this->path.$file.'.php';
        if (file_exists($filename))
            try {
                require $filename; //TODO add global set_error_handler and try clause to catch parse errors
            } catch (Exception $e) {} //autoload exceptions are not passed by design, nothing to do
    }

    function produce($name) {
        if (isset($this->manifest[$name])) {
            $class = $this->namespace.$this->manifest[$name];
            if (class_exists($class, $autoload = true)) {
                return new $class();
            } else throw new \jj\SystemConfigurationException('Factory '.get_class($this)." was unable to produce a new class {$class}", 'SYSTEM_ERROR', $this);
//an example of a custom exception with a string code and data container

        } else throw new LogicException("Unknown {$this->description} {$name}.");
    }

    function __toString() //description function if custom exception class wants a string explanation for its container
    {
        return $this->description." factory ".get_class($this)."(path={$this->path}, namespace={$this->namespace}, map: ".json_encode($this->manifest).")";
    }

}

最后是一个例子:

namespace jj;
require_once('lib/AbstractFactory.php');
require_once('lib/CurrenciesProvider.php'); //base abstract class for all banking objects that are created

class CurrencyProviders extends SimpleFactory
{
    function __construct()
    {
        $manifest = array(
          'Germany' => 'GermanBankCurrencies',
          'Switzerland' => 'SwissBankCurrencies'
        );

        parent::__construct($manifest, __DIR__.'/CurrencyProviders/', //you have total control over relative or absolute paths here
       'banks\');
        $this->description = 'currency provider country name';
    }


}

现在做

$currencies_cache = (new \jj\CurrencyProviders())['Germany'];

或者

$currencies_cache = (new \jj\CurrencyProviders())['Ukraine'];

LogicException("未知货币提供者国家名称乌克兰")

如果 /CurrencyProviders/ 中没有 SwissCurrencies.php 文件,

\jj\SystemConfigurationException('工厂 jj\CurrencyProviders 无法生成新类银行\SwissCurrencies。调试数据:货币提供者国家名称工厂 jj\CurrencyProviders(path=/var/www/hosted/site/.../CurrencyProviders/ , 命名空间=银行\, 地图: {"Germany": "GermanBankCurrencies", "Switzerland":"SwissBankCurrencies"}')

通过足够的努力,可以扩展这个工厂来捕获解析错误(如何在 PHP 中捕获 require() 或 include() 的错误?)并将参数传递给构造函数。

于 2015-10-01T17:06:15.350 回答