Yaf_Route_Supervar::__construct

(Yaf >=1.0.0)

Yaf_Route_Supervar::__constructThe __construct purpose

Beschreibung

publicYaf_Route_Supervar::__construct(string$supervar_name)

Yaf_Route_Supervar is similar with Yaf_Route_Static, the difference is Yaf_Route_Supervar will look for path info in query string, and the parameter supervar_name is the key.

Parameter-Liste

supervar_name

The name of key.

Rückgabewerte

Beispiele

Beispiel #1 Yaf_Route_Supervar()example

<?php

Yaf_Dispatcher::getInstance()->getRouter()->addRoute(
"name",
new
Yaf_Route_Supervar("r")
);
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

 array ( "module" => index(default), "controller" => ctr, "action" => act, "params" => array( "var" => value, ) )
To Top