Yaf_Route_Simple 类

(Yaf >=1.0.0)

简介

Yaf_Route_Simple 将匹配查询字符串,并找到路由信息。

您只需告诉 Yaf_Route_Simple $_GET 中的哪个键是模块,哪个键是控制器,以及哪个键是操作。

Yaf_Route_Simple::route() 将始终返回 true,因此将 Yaf_Route_Simple 放在路由栈的最前面非常重要,否则所有其他路由都不会被调用。

类概要

class Yaf_Route_Simple implements Yaf_Route_Interface {
/* 属性 */
protected $controller;
protected $module;
protected $action;
/* 方法 */
public __construct(string $module_name, string $controller_name, string $action_name)
public assemble(array $info, array $query = ?): string
public route(Yaf_Request_Abstract $request): bool
}

属性

controller

module

action

目录

添加注释

用户贡献的注释

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