Yaf_Route_Map::assemble
(Yaf >=2.3.0)
Yaf_Route_Map::assemble — URLを組み立てる
パラメータ
info
-
query
-
戻り値
成功時に文字列を、
失敗時に null
を返します。
エラー / 例外
Yaf_Exception_TypeError をスローする可能性があります。
例
例1 Yaf_Route_Map::assemble() の例
<?php
$router = new Yaf_Router();
$route = new Yaf_Route_Map();
$router->addRoute("map", $route);
var_dump($router->getRoute('map')->assemble(
array(
':c' => 'foo_bar'
),
array(
'tkey1' => 'tval1',
'tkey2' => 'tval2'
)
)
);
$route = new Yaf_Route_Map(true, '_');
$router->addRoute("map", $route);
var_dump($router->getRoute('map')->assemble(
array(
':a' => 'foo_bar'
),
array(
'tkey1' => 'tval1',
'tkey2' => 'tval2'
)
)
);
上の例の出力は、 たとえば以下のようになります。
string(%d) "/foo/bar?tkey1=tval1&tkey2=tval2" string(%d) "/foo/bar/_/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