Yaf_Route_Map::__constructThe __construct purpose Beschreibung
public Yaf_Route_Map::__construct
([ string
$controller_prefer = false
[, string $delimiter = ""
]] )
Parameter-Liste
Rückgabewerte
BeispieleBeispiel #1 Yaf_Route_Mapexample
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: /* for http://yourdomain.com/product/foo/bar * route will result in following values: */ array( "controller" => "product_foo_bar", ) Beispiel #2 Yaf_Route_Mapexample
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
/* for http://yourdomain.com/user/list/_/foo/22
* route will result in following values:
*/
array(
"action" => "user_list",
)
/**
* and request parameters:
*/
array(
"foo" => 22,
)
Beispiel #3 Yaf_Route_Mapexample
<?phpSiehe auch
|