PHP 8.1.28 Released!

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 将从 query 字符串中获得路由信息。这个构造方法的参数会被作为键到 $_GET 中去寻找路由信息。

警告

本函数还未编写文档,仅有参数列表。

参数

module_name

module 信息的键名。

controller_name

controller 信息的键名。

action_name

action 信息的键名。

返回值

总是返回 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()example

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)

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top