Yaf_Route_Simple::__construct

(Yaf >=1.0.0)

Yaf_Route_Simple::__constructYaf_Route_Simple 构造函数

说明

public Yaf_Route_Simple::__construct(string $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)

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top