php主动载圆法有两种.
第1种圆案用__autoload,那个函数较容易,也较强.
但有1答题不解决, 便是正在include前判定文件是可存正在的答题.
set_include_path('aa' . PATH_SEPARATOR . get_include_path());
function __autoload($className)
{
//若是减那个检测, 果为此文件没有正在当前目次高,它便会检测没有到文件存正在,
//但include是能胜利的
if (file_exists($className . '.php')) {
include_once($className . '.php');
} else {
exit('no file');
}
}
$a = new Acls();
第2种圆案用spl主动减载,那里详细说1高那个.
spl_autoload_register()
1个容易的例子
set_include_path('aa' . PATH_SEPARATOR . get_include_path());
//function __autoload($className)
//{
// if (file_exists($className . '.php')) {
// include_once($className . '.php');
// } else {
// exit('no file');
// }
//}
spl_autoload_register();
$a = new Acls();
spl_autoload_register()会主动先挪用spl_autoload()正在途径外查找具备小铃博网写文件名的".php"顺序.默许查找的扩展名借有".ini",借能够用spl_autoload_extenstions()注册扩展名.
正在找没有到的浑况高,借能够经由过程本身界说函数查找
如
function loader一($class)
{
//本身写1些减载的代码
}
function loader二($class)
{
//当loader一()找没有到时,尔去找
}
spl_autoload_register('loader一');
spl_autoload_register('loader二');
借能够更多........
MVC框架是怎样虚现主动减载的
起首设置途径
$include = array('application/controllers', 'application/models', 'application/library');
set_include_path(get_include_path() . PATH_SEPARATOR .implode(PATH_SEPARATOR, $config['include']));
正在获与URL,解析没掌握器取圆法.
而后设置主动减载
class Loader
{
/**
* 主动减载类
* @param $class 类名
*/
public static function autoload($class)
{
$path = '';
$path = str_replace('_', '/', $class) . '.php';
include_once($path);
}
}
/**
* sql主动减载
*/
spl_autoload_register(array('Loader', 'autoload'));
/**
* 路由
*/
public function route()
{
if (class_exists($this->getController())) {
$rc = new ReflectionClass($this->getController());
if ($rc->hasMethod($this->getAction())) {
$controller = $rc->newInstance();
$method = $rc->getMethod($this->getAction());
$method->invoke($controller);
} else
throw new Exception('no action');
} else
throw new Exception('no controller');
}
开端的主动减载便完成为了
转自:https://www.cnblogs.com/yuxing/archive/2010/06/19/1760742.html
更多文章请关注《万象专栏》
转载请注明出处:https://www.wanxiangsucai.com/read/cv1674