推奨: 「PHP ビデオ チュートリアル 」
まず既存のファイル ディレクトリを確認してください
DOCUMENT_ROOR は / home/www ディレクトリ
#次に、エントリ ファイルの内容を確認します。
<?php $controll_action = $_GET['_ca_']; $params = explode('/',$controll_action); $params_count = count($params); $otherParams = $params; if($params_count>1) { $controller = $params[0]; $action = $params[1]; unset($params[0]); unset($params[1]); }else if($params_count==1) { $controller = $params[0]; $action = 'index'; unset($params[0]); } $filename = strtolower($controller).'.php'; $controller_path = $_SERVER['DOCUMENT_ROOT'].'/application/controllers/'; if(!file_exists($controller_path.$filename)) { throw new Exception('controller '.$filename.' is not exists!'); return; } include($controller_path.$filename); $classname = ucfirst($controller); if(!class_exists($classname)) { throw new Excpetion('class '.$classname.' is not exists!'); } $reflecObj = new ReflectionClass($classname); if(!$reflecObj->hasMethod($action)){ throw new Exception('method '.$action.' is not exists!'); } $currentObj = new $classname(); echo "classname=$classname,action=$action,params=".json_encode($params)."<br/>"; call_user_func_array([$currentObj,$action],$params); return; ?>
次に、単純なコントローラー user.php を作成し、特定のコードを使用して applicaiton/controllers/ ディレクトリに置きます。内容は次のとおりです:
<?php class User { function __construct(){ } public function index($name='') { echo 'hello,'.$name.',lucky,you are arrive here!'; } }
最後に正しいコントローラー ジャンプと間違ったコントローラー ジャンプをテストします
最初に正しいプロセスをテストします: http://192.168.1.99/user /index/xiaoming
出力内容:
classname=User,action=index,params={"2":"xiaoming"} hello,xiaoming,lucky,you are arrive here!
存在しないコントローラーを再度テストします。http://192.168.1.99/account/index/xiaoming
Fatal error: Uncaught exception 'Exception' with message 'controller acount.php is not exists!' in /home/www/webroot/index.php:25Stack trace:#0 {main} thrown in /home/www/webroot/index.php on line 25
以上がphp フレームワークの単純な実装。単純なルーティング層のみを実装します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。