__autoload的使用方法1:
最经常使用的就是这种方法,根据类名,找出类文件,然后require_one
复制代码 代码如下:
function __autoload($class_name) {
$path = str_replace('_', '/', $class_name);
require_once $path . '.php';
}
// 这里会自动加载Http/File/Interface.php 文件
$a = new Http_File_Interface();
复制代码 代码如下:
$map = array(
'Http_File_Interface' => 'C:/PHP/HTTP/FILE/Interface.php'
);
function __autoload($class_name) {
if (isset($map[$class_name])) {
require_once $map[$class_name];
}
}
// 这里会自动加载C:/PHP/HTTP/FILE/Interface.php 文件
$a = new Http_File_Interface();
复制代码 代码如下:
/*http.php*/
class http
{
public function callname(){
echo "this is http";
}
}
/*test.php*/
set_include_path("/home/yejianfeng/handcode/"); //这里需要将路径放入include
spl_autoload("http"); //寻找/home/yejianfeng/handcode/http.php
$a = new http();
$a->callname();
复制代码 代码如下:
/*http.php*/
class http
{
public function callname(){
echo "this is http";
}
}
/*test.php*/
spl_autoload_register(function($class){
if($class == 'http'){
require_once("/home/yejianfeng/handcode/http.php");
}
});
$a = new http();
$a->callname();
复制代码 代码如下:
/*http.php*/
class http
{
public function callname(){
echo "this is http";
}
}
/*http2.php*/
class http
{
public function callname(){
echo "this is http2";
}
}
/*test.php*/
spl_autoload_register(function($class){
if($class == 'http'){
require_once("/home/yejianfeng/handcode/http.php");
}
if($class == 'http2'){
require_once("/home/yejianfeng/handcode/http2.php");
}
});
spl_auto_call('http2');
$a = new http();
$a->callname(); //这个时候会输出"this is http2"
复制代码 代码如下:
spl_autoload_register(array(__CLASS__, 'autoload'));
public static function autoload($class)
{
…..
}