Yaf_Route_Supervar::__constructThe __construct purpose Beschreibung
public Yaf_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
Rückgabewerte
BeispieleBeispiel #1 Yaf_Route_Supervarexample
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
/** for request: http://yourdomain.com/xx/oo/?r=/ctr/act/var/value
* will result in following:
*/
array (
"module" => index(default),
"controller" => ctr,
"action" => act,
"params" => array(
"var" => value,
)
)
Siehe auch
|