php自動載入的兩種實作方法,需要的朋友可以參考下。
php自動載方法有兩種.
第一種方案用autoload,這個函數較簡單,也較弱.
但有一問題沒有解決, 就是在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();
第二個方案用spl自動載入,這裡具體說一下這個.
spl_autoload_register()
一個簡單的例子
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 loader1($class)
{
//自己寫一些載入的程式碼
}
function loader2($class)
{
//當loader1()找不到時,我來找
}
spl_autoload_register('loader1');
spl_autoload_register('loader2 ');
還可以更多........
MVC框架是如何實現自動載入的
首先設定路徑
'include' => array( 'application/catalog /controllers', 'application/catalog/models', ),$include = array('application/controllers', 'application/models', 'application/library');
set_include_path(get_include_path() .PATH_path(PARATOR). (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'); }
初步的自動載入就完成了
以上是實例詳解兩種php自動載入實作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!