Dutch PHP Conference 2027

Yaf_Route_Regex::route

(Yaf >=1.0.0)

Yaf_Route_Regex::routeRoute a request

Опис

public function Yaf_Route_Regex::route(Yaf_Request_Abstract $request): bool

Route the request with a regular expression: the URI is matched against the pattern given to the constructor, and the route result (the module, controller and action) is taken from the captured variables, mapped by the map parameter.

Параметри

request

The Yaf_Request_Abstract instance to route.

Значення, що повертаються

Returns true if the URI matches, false otherwise, which makes the router try the next route.

Приклади

Приклад #1 Yaf_Route_Regex::route() example

<?php
/* assume the request URI is "/product/php-book" */
$request = new Yaf_Request_Http("/product/php-book");

$route = new Yaf_Route_Regex(
    "#^/product/([^/]+)/?$#", // match a URI leading "/product"
    array(
        'controller' => "product", // route to the product controller
    ),
    array(
        1 => "name", // $request->getParam("name") will be "php-book"
    )
);

var_dump($route->route($request));

var_dump($request->getControllerName());
var_dump($request->getParam("name"));
?>

Поданий вище приклад виведе щось схоже на:

bool(true)
string(7) "product"
string(8) "php-book"

Прогляньте також

add a note

User Contributed Notes

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