Yaf_Route_Map::__constructThe __construct purpose Description
public Yaf_Route_Map::__construct(string
$controller_prefer = false, string $delimiter = "")
Parameters
Return Values
ExamplesExample #1 Yaf_Route_Map example The above example will output something similar to: /* for http://yourdomain.com/product/foo/bar * route will result in following values: */ array( "controller" => "product_foo_bar", ) Example #2 Yaf_Route_Map example The above example will output something similar to:
/* for http://yourdomain.com/user/list/_/foo/22
* route will result in following values:
*/
array(
"action" => "user_list",
)
/**
* and request parameters:
*/
array(
"foo" => 22,
)
Example #3 Yaf_Route_Map example See Also
|