update : 2015.11.03
php.shukuma.com검색:
|
Yaf_Route_Supervar::__construct(Yaf >=1.0.0) Yaf_Route_Supervar::__construct — The __construct purpose 설명
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. Warning
이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다. 인수
반환값
예제Example #1 Yaf_Route_Supervar()example
<?php 위 예제의 출력 예시: /** 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, ) ) 참고
|