(Yaf >=2.3.0)
Yaf_Route_Supervar::assemble — 组装一个 URL
info
query
返回一个 string.
如果 info
键 ':c'
和 ':a'
未设置,则抛出 Yaf_Exception_TypeError。
示例 #1 Yaf_Route_Supervar::assemble() 示例
<?php
$router = new Yaf_Router();
$route = new Yaf_Route_Supervar('r');
$router->addRoute("supervar", $route);
var_dump($router->getRoute('supervar')->assemble(
array(
':a' => 'yafaction',
'tkey' => 'tval',
':c' => 'yafcontroller',
':m' => 'yafmodule'
),
array(
'tkey1' => 'tval1',
'tkey2' => 'tval2',
1 => array(),
)
));
} catch (Exception $e) {
var_dump($e->getMessage());
}
以上示例将输出类似以下内容
string(%d) "?r=/yafmodule/yafcontroller/yafaction&tkey1=tval1&tkey2=tval2" string(%d) "You need to specify the controller by ':c'"