前回リダイレクトとフォワードについて話したとき、これら 2 つの機能を正常に使用するには、少なくともドメイン名、コントローラー名、および Action を変更する必要があると言いました。名前は保存され、後でリダイレクトまたは転送を呼び出すときに使用できます。
次に、Route.php に移動します。このクラスのコードは非常に単純であることがわかります。
01 |
02 | class Route extends Base { |
04 | $controller= empty($_GET['c']) ? C('defaultController') : trim($_GET['c']); //设置了默认的控制器 |
02
05 | $action = empty($_GET['a']) ? C('defaultAction') : trim($_GET['a']); //设置了默认的Action |
06 | $controllerBasePath = APP_PATH . '/UserApps/Modules/Controllers/'; |
07 | $controllerFilePath = $controllerBasePath . $controller . 'Controller.php'; |
08 | if(is_file($controllerFilePath)) { |
09 | include $controllerFilePath; |
10 | $controllerName = $controller . 'Controller'; |
11 | if(class_exists($controllerName)) { |
12 | $controllerHandler = new $controllerName(); |
13 | if(method_exists($controllerHandler,$action)) { |
14 | $controllerHandler->$action(); |
15 | } else { |
16 | echo 'the method does not exists'; |
17 | } |
18 | } else { |
19 | echo 'the class does not exists'; |
20 | } |
21 | } else { |
22 | echo 'controller not exists'; |
23 | } |
24 | } |
25 | } |
次に、ドメイン名を削除する必要がありますが、どうすればよいでしょうか?
実際、PHP には強力なスーパー グローバル変数 $_SERVER があり、多くの情報が保存されており、それを確認できます。
1 |
2 | var_dump($_SERVER); |
HTTP_HOST 属性があることに気付きました。PHP マニュアルを確認してください。
と書かれています。ホストの内容: 現在のリクエストのヘッダー (存在する場合)。
現在、URL http://localhost/test/test.php があるとします。$_SERVER['HTTP_HOST'] の値は何でしょうか。これは実際には localhost です。一般的に、取得したいのは localhost/test なので、次の /test を取得するにはどうすればよいでしょうか?検索を続けましょう:
REQUEST_URI、SCRIPT_FILENAME、SCRIPT_NAME、および PHP_SELF の値がすべて /test/test.php であることがわかりました。PHP マニュアルの説明は次のとおりです。
1. このページにアクセスするために指定された URI、たとえば '/index.html'
2. 現在実行中のスクリプトの絶対パス名。
3.現在のスクリプトのパスが含まれます。これは、それ自体を指す必要があるページに便利です。__FILE__ 定数には、現在の (つまり、インクルードされた) ファイルの完全なパスとファイル名が含まれます。
4. ドキュメント ルートを基準とした現在実行中のスクリプトのファイル名。たとえば、アドレス http://example.com/test.php/ のスクリプト内の $_SERVER['PHP_SELF'] です。 foo.bar は /test.php/foo.bar になります。__FILE__ 定数には、現在の (つまり、インクルードされた) ファイルの完全なパスとファイル名が含まれます。PHP がコマンドライン プロセッサとして実行されている場合、この変数には PHP 以降のスクリプト名が含まれます。 4.3.0。以前は利用できませんでした。
もちろん、ここでテストしているのは、Apache、nginx、iis などの状況です。また、.htaccess ファイルに書き換えルールを設定した場合も異なります。 Route に関しては、考慮すべきことがたくさんあります。URL の通常モード、PATHINFO モード、REWRITE モード、互換モードの最も一般的な方法を使用します。
まず、パスを保存するクラス Path.php を定義します。
<テーブル>
01 |
02 | class Path extends Base { |
03 | private static $_base = ''; |
04 | private static $_controller = ''; |
05 | private static $_action = ''; |
06 | public static function setBasePath($base) { |
07 | self::$_base = $base; |
08 | } |
09 | public static function setController($controller) { |
10 | self::$_controller = $controller; |
11 | } |
12 | public static function setAction($action) { |
13 | self::$_action = $action; |
14 | } |
15 | public static function getBasePath() { |
16 | return self::$_base; |
17 | } |
18 | public static function getController() { |
19 | return self::$_controller; |
20 | } |
21 | public static function getAction() { |
22 | return self::$_action; |
23 | } |
24 | } |
Java の pojo と同じように、このクラスにはセッターとゲッターしかないため、詳細は説明しません。
次に、Route.php を見て、URL を取得します。
<テーブル>
1 | $_SERVER['HTTP_HOST'] . substr($_SERVER['REQUEST_URI'],0,strrpos($_SERVER['REQUEST_URI'],'/')) |
$_SERVER['HTTP_HOST'] .substr($_SERVER['REQUEST_URI'],0,strrpos($_SERVER['REQUEST_URI'],'/'))
HTTP_HOST と REQUEST_URI の機能についてはすでに説明したので、このコードでは主に次の substr と strrpos について説明します。 Substr は文字列を切り捨てることであり、strrpos は親文字列内の特定の部分文字列を取得することです。最後に見た場所。
PS: この書き方にはまだ問題がありますが、わかりやすくするために複雑にはしません。
1 | Path::setBasePath($_SERVER['HTTP_HOST'] . substr($_SERVER['REQUEST_URI'],0,strrpos($_SERVER['REQUEST_URI'],'/'))); |
2 | Path::setController($controller); |
3 | Path::setAction($action); |
これらのパラメータを設定した後、Controller.php のリダイレクト コードと転送コードも少し変更する必要があります:
<テーブル>
01 |
02 | class Controller extends Base { |
04 | array_key_exists('controller',$arr) $arr['controller'] = Path::getContrller(); |
02
05 | array_key_exists('action',$arr) $arr['action'] = Path::getAction();; |
06 | $str = 'http://' . Path::getBasePath() . '/index.php?'; |
07 | foreach($arr as $key => $val) { |
08 | if(!is_int($key)) { |
09 | $str .= ($key . '=' . $val . '&'); |
10 | } |
11 | } |
12 | $str = substr($str,0,strlen($str) - 1); |
13 | Response::redirect($str); |
14 | } |
15 | protected function _forward(Array $arr) { |
16 | $controller = Path::getController(); |
17 | $action = Path::getAction(); |
18 | if(array_key_exists('controller',$arr)) { |
19 | $controller = $arr['controller']; |
20 | } |
21 | if(array_key_exists('action',$arr)) { |
22 | $action = $arr['action']; |
23 | } |
24 | $controller .= 'Controller'; |
25 | if($controller === get_class()) { |
26 | if(method_exists($this,$action)) { |
27 | $this->$action(); |
28 | } else { |
29 | //时间有限,不写逻辑了 |
30 | } |
31 | } else { |
32 | if(class_exists($controller)) { |
33 | $class = new $controller(); |
34 | if(method_exists($class,$action)) { |
35 | $class->$action(); |
36 | } else { |
37 | //时间有限,不写了 |
38 | } |
39 | } else { |
40 | //时间有限,不写了 |
41 | } |
42 | } |
43 | } |
44 | protected function _assign(Array $arr) { |
45 | View::assign($arr); |
46 | } |
47 | protected function _display($str) { |
48 | if(is_string($str)) { |
49 | $str = str_replace(array( |
50 | '.','#' |
51 | ),array( |
52 | '/','.' |
53 | ),$str); |
54 | View::display(MODULES_PATH . View::VIEW_BASE_PATH . $str . '.php'); |
55 | } |
56 | } |
57 | } |
主な変更点は、ControllerとActionの取得がPathクラスの呼び出し方法となり、_redirectでは$str = 'http://'となっています。 '/index.php?'、ここでは http プロトコルが使用され、書き換えはなく、サーバーは Apache を使用すると仮定します。
完了したら、_redirect と _forward を使用します。何か問題がありますか?