我已经阅读了如下所示在需要时动态加载类文件:
function __autoload($className)
{
include("classes/$className.class.php");
}
$obj = new DB();
当您创建该类的新实例时,会自动加载DB.class.php
,但我也在一些文章中读到使用它是不好的,因为它是一个全局函数和您带入的任何库具有__autoload()
功能的项目会弄乱它。
所有人都知道解决方案吗?也许另一种方法可以达到与__autoload()
相同的效果?在找到合适的解决方案之前,我将继续使用__autoload()
,因为在您引入库等之前它不会开始成为问题。
感谢。
答案 0 :(得分:10)
我已经使用以下代码来使用spl_autoload_register,如果它不存在则会降级,并且还处理使用__autoload的库,你需要包含它。
//check to see if there is an existing __autoload function from another library
if(!function_exists('__autoload')) {
if(function_exists('spl_autoload_register')) {
//we have SPL, so register the autoload function
spl_autoload_register('my_autoload_function');
} else {
//if there isn't, we don't need to worry about using the stack,
//we can just register our own autoloader
function __autoload($class_name) {
my_autoload_function($class_name);
}
}
} else {
//ok, so there is an existing __autoload function, we need to use a stack
//if SPL is installed, we can use spl_autoload_register,
//if there isn't, then we can't do anything about it, and
//will have to die
if(function_exists('spl_autoload_register')) {
//we have SPL, so register both the
//original __autoload from the external app,
//because the original will get overwritten by the stack,
//plus our own
spl_autoload_register('__autoload');
spl_autoload_register('my_autoload_function');
} else {
exit;
}
}
因此,该代码将检查现有的__autoload函数,并将其添加到堆栈以及您自己的函数中(因为spl_autoload_register将禁用正常的__autoload行为)。
答案 1 :(得分:7)
您可以使用spl_autoload_register()
,将任何现有的__autoload()
魔法添加到堆栈中。
function my_autoload( $class ) {
include( $class . '.al.php' );
}
spl_autoload_register('my_autoload');
if( function_exists('__autoload') ) {
spl_autoload_register('__autoload');
}
$f = new Foo;
答案 2 :(得分:4)
正确的方法是使用spl_autoload_register
。要保存某些第三方介绍的__autoload
函数,您也可以将该函数放在自动加载器堆栈中:
if (function_exists('__autoload')) {
spl_autoload_register('__autoload');
}
答案 3 :(得分:3)
使用spl_autoload_register而不是__autoload。这将允许您将自动加载功能添加到堆栈中。
答案 4 :(得分:0)
您可以使用Zend_Loader。 (假设您可以使用Zend Framework ...)
答案 5 :(得分:0)
您可以做的最好的事情是定义自己的对象,负责为您编程的任何子系统进行自动加载。
例如:
class BasketAutoloader
{
static public function register()
{
spl_autoload_register(array(new self, 'autoload'));
}
public function autoload($class)
{
require dirname(__FILE__).'/'.$class.'.php';
}
}