(Yaf >=1.0.0)
Yaf_Route_Simple::__construct — Yaf_Route_Simple 构造函数
$module_name
, string $controller_name
, string $action_name
)Yaf_Route_Simple 将从查询字符串获取路由信息。构造函数的参数将在 $_GET 中搜索路由信息时用作键。
此函数目前没有文档记录;只有其参数列表可用。
module_name
模块信息的键名。
controller_name
控制器信息的键名。
action_name
动作信息的键名。
始终返回 true
。
示例 #1 Yaf_Route_Simple::route() 示例
<?php
$route = new Yaf_Route_Simple("m", "controller", "act");
Yaf_Router::getInstance()->addRoute("simple", $route);
?>
示例 #2 Yaf_Route_Simple::route() 示例
Request: http://yourdomain.com/path/?controller=a&act=b => module = default(index), controller = a, action = b Request: http://yourdomain.com/path => module = default(index), controller = default(index), action = default(index)