PHP 5.3.3-pl1-gentoo (cli)(构建:2010 年 8 月 17 日 18:37:41)
大家好,我在项目的主文件(index.php)中使用了一个简单的自动加载器:
require_once("./config.php");
require_once("./app.php");
require_once("./../shared/SqlTool.php");
function __autoload($className) {
$fn = 'file-not-exists-for-{$className}';
if (file_exists("./specific/php/{$className}.php")) { $fn = "./specific/php/{$className}.php"; } else
{ $fn = "./../shared/{$className}.php";}
require_once($fn);
}
$sql = new SqlHD(); // class SqlHD, in ./specific/php/SqlHD.php extends SqlTool
$web = new HTMLForm($sql); // class HTMLForm in HTMLForm.php
$app = new App($sql, $web); // class App in App.php
$app->Main();
问题:没有它require_once("./../shared/SqlTool.php");
,脚本无法执行SqlHD.php,因为它自己找不到SqlTool.php,并且由于某种原因它不使用主文件中定义的自动加载例程。
我试过这个:
spl_autoload_register(__NAMESPACE__ .'\Test::load');
class Test {
static public function load($className){
$fn = 'file-not-exists-for-{$className}';
if (file_exists("./specific/php/{$className}.php")) { $fn = "./specific/php/{$className}.php"; } else
{ $fn = "./../shared/{$className}.php}";}
echo realpath($fn);//"$curRealDir Filename $fn\n";
echo "\n";
require_once($fn);
}
}
好,
PHP 警告:require_once(./../shared/SqlTool.php}):无法打开流:第 20 行的 /home/beep/work/php/hauthd/index.php 中没有这样的文件或目录 PHP 致命错误: require_once():在 /home/beep/work/php 中打开所需的 './../shared/SqlTool.php}' (include_path='.:/usr/share/php5:/usr/share/php') 失败/hauthd/index.php 第 20 行
所以它不会对扩展类的任何请求做出反应。
最后一个想法:把 spl_autoload_register 放到每个文件中。但不能把它放到“扩展”指令本身!
PS 可能使用工厂模式重写 SqlTool.php,因此它会自动返回项目特定类的实例,但这似乎不是最好的方法,或者它是..?