《PHP编程:php类自动加载器实现方法》要点:
本文介绍了PHP编程:php类自动加载器实现方法,希望对您有用。如果有疑问,可以联系我们。
PHP教程本文实例讲述了php类自动加载器实现办法.分享给大家供大家参考.具体如下:
PHP教程这里autoload 可兼容以下格式:
PHP教程Cache_File_Json
class_xxx.php
xxx.class.php
xxx.php
PHP教程php代码如下:
PHP教程
function __autoload($className){
$dirs=explode('_',$className);
$fileName=array_pop($dirs);
//print_r($dirs);
$filePath=$fileName;
if(is_array($dirs) && (count($dirs) > 0)){
//echo '\n---\n'; print_r($dirs);
$dirPath='';
foreach ($dirs as $dir){
if($dir){
$dirPath.=strtolower($dir).DIRECTORY_SEPARATOR;
}
}
$filePath=$dirPath.$fileName.'.php';
}else {
if( file_exists('class_'.$fileName.'.php')){
$filePath='class_'.$fileName.'.php';
}else {
if( file_exists($fileName.'.class.php')){
$filePath=$fileName.'.class.php';
} else {
$filePath=$fileName.'.php';
}
}
}
//var_dump($filePath);
require $filePath;
}
PHP教程希望本文所述对大家的php程序设计有所赞助.
维易PHP培训学院每天发布《PHP编程:php类自动加载器实现方法》等实战技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培养人才。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/9401.html