自動加載

//index.php?m=類名&a=方法名
	$control=isset($_REQUEST['m'])?$_REQUEST['m']:"Index"; //類名
	$action=isset($_REQUEST['a'])?$_REQUEST['a']:"Index";//方法名
	$obj=new $control;
	$obj->$action();
	//單入口模式比較安全

	function __autoload($classname){
		$file="./libs/".$classname.".php";
		if(!file_exists($file)){
			$file="./Include/".$classname.".php";
			if(!file_exists($file))
				require($file);
			else 
				return false;
		}else{
			require($file);
		}
	}
相關文章
相關標籤/搜索