(PECL yaf >=1.0.0)
Yaf_Route_Rewrite::__construct — The __construct purpose
$match
, array $route
[, array $verify
] )
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
match
リクエストの URI とマッチさせるパターン。
もしマッチしなければ Yaf_Route_Rewrite は
FALSE
を返します。
route
リクエスト URI がパターンにマッチしたときに、 Yaf_Route_Rewrite はこれを使ってルーティング先を判断します。
この配列で指定するモジュール、コントローラ、アクションはすべて任意指定で、 値を省略したときにはデフォルト設定を利用します。
verify
例1 Yaf_Route_Rewrite() の例
<?php
/**
* Add a rewrite route to Yaf_Router route stack
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new Yaf_Route_rewrite(
"/product/:name/:id/*", //match request uri leading "/product"
array(
'controller' => "product", //route to product controller,
),
)
);
?>
上の例の出力は、 たとえば以下のようになります。
/* http://yourdomain.com/product/foo/22/foo/bar * の場合はこのような結果になります */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * リクエストパラメータは、このようになります */ array( "name" => "foo", "id" => 22, "foo" => bar )
例2 Yaf_Route_Rewrite() の例
<?php
/**
* Add a rewrite route to Yaf_Router route stack by calling addconfig
*/
$config = array(
"name" => array(
"type" => "rewrite", //Yaf_Route_Rewrite route
"match" => "/user-list/:id", //match only /user/list/?/
"route" => array(
'controller' => "user", //route to user controller,
'action' => "list", //route to list action
),
),
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new Yaf_Config_Simple($config));
?>
上の例の出力は、 たとえば以下のようになります。
/* http://yourdomain.com/user-list/22 * の場合はこのような結果になります */ array( "controller" => "user", "action" => "list", "module" => "index", //(default) ) /** * リクエストパラメータは、このようになります */ array( "id" => 22, )