php自动加载文件,某些时候很有用,比如你写了一堆类,挨个添加 require的时候..你会想死…
so,现在介绍2种加载方法,第一种是使用php自动加载函数。
这个函数php手册有提到,点击浏览。
emlog的作者很有才,这个方法很犀利.
<?php
function __autoload($class) {
$path = somepath;
$class = strtolower($class);
if (file_exists($path. $class . '.php')) {
require_once($path. $class . '.php');
} else{
die($class.'加载失败。');
}
}
?>
第二种使用sql加载的方法,给出2个链接。