欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php类自动加载器

程序员文章站 2022-04-24 09:42:06
...
跳至
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类自动加载器