PHP » GoLang |
login |
register |
about
|
GoLang Yaf_Route_Map::__construct
request it (343)
GoLang replacement for PHP's Yaf_Route_Map::__construct
[edit | history]
PHP Yaf_Route_Map::__constructPHP original manual for Yaf_Route_Map::__construct [ show | php.net ]Yaf_Route_Map::__construct(Yaf >=1.0.0) Yaf_Route_Map::__construct — The __construct purpose Description
public Yaf_Route_Map::__construct
([ string
$controller_prefer = FALSE
[, string $delimiter = ""
]] )
Parameters
Return Values
ExamplesExample #1 Yaf_Route_Map()example
<?php 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
<?php 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
<?php See Also
|
more
Recently updated
more
Most requested
more
Last requests
|