PHP Conference Japan 2024

Yaf_Route_Map::__construct

(Yaf >=1.0.0)

Yaf_Route_Map::__construct__construct 的用途

描述

public Yaf_Route_Map::__construct(string $controller_prefer = false, string $delimiter = "")

参数

controller_prefer

结果是否应视为控制器或操作

delimiter

返回值

示例

示例 #1 Yaf_Route_Map()示例

<?php
/**
* 将映射路由添加到 Yaf_Router 路由栈
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new
Yaf_Route_Map());
?>

以上示例将输出类似以下内容

/* for http://yourdomain.com/product/foo/bar
 * route will result in following values:
 */
array(
  "controller" => "product_foo_bar",
)

示例 #2 Yaf_Route_Map()示例

<?php
/**
* 将映射路由添加到 Yaf_Router 路由栈
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new
Yaf_Route_Map(true, "_"));
?>

以上示例将输出类似以下内容

/* for http://yourdomain.com/user/list/_/foo/22
 * route will result in following values:
 */
array(
    "action" => "user_list",
)

/**
 * and request parameters:
 */
array(
  "foo"   => 22,
)

示例 #3 Yaf_Route_Map()示例

<?php
/**
* 通过调用 addconfig 将映射路由添加到 Yaf_Router 路由栈
*/
$config = array(
"name" => array(
"type" => "map", //Yaf_Route_Map 路由
"controllerPrefer" => FALSE,
"delimiter" => "#!",
),
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new
Yaf_Config_Simple($config));
?>
添加注释

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top