Yaf_Route_Simple::assemble
(Yaf >=2.3.0)
Yaf_Route_Simple::assemble — URLを組み立てる
パラメータ
info
-
query
-
戻り値
文字列を返します。
エラー / 例外
info
に
キー ':c'
または ':a'
が設定されていなかった場合、
Yaf_Exception_TypeError をスローします。
例
例1 Yaf_Route_Simple::assemble() の例
<?php
$router = new Yaf_Router();
$route = new Yaf_Route_Simple('m', 'c', 'a');
$router->addRoute("simple", $route);
var_dump($router->getRoute('simple')->assemble(
array(
':a' => 'yafaction',
'tkey' => 'tval',
':c' => 'yafcontroller',
':m' => 'yafmodule'
),
array(
'tkey1' => 'tval1',
'tkey2' => 'tval2'
)
));
上の例の出力は、 たとえば以下のようになります。
string(64) "?m=yafmodule&c=yafcontroller&a=yafaction&tkey1=tval1&tkey2=tval2"
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google