CakeFest 2024: The Official CakePHP Conference

Yaf_Route_Regex::assemble

(Yaf >=2.3.0)

Yaf_Route_Regex::assembleURL を組み立てる

説明

public Yaf_Route_Regex::assemble(array $info, array $query = ?): ?string

URL を組み立てます。

パラメータ

info

query

戻り値

成功時に文字列を返します。 失敗時に null を返します。

例1 Yaf_Route_Regex::assemble() の例

<?php

$router
= new Yaf_Router();

$route = new Yaf_Route_Regex(
"#^/product/([^/]+)/([^/])+#",
array(
'controller' => "product", //route to product controller,
),
array(),
array(),
'/:m/:c/:a'
);

$router->addRoute("regex", $route);

var_dump($router->getRoute('regex')->assemble(
array(
':m' => 'module',
':c' => 'controller',
':a' => 'action'
),
array(
'tkey1' => 'tval1',
'tkey2' =>
'tval2'
)
)
);

上の例の出力は、 たとえば以下のようになります。

string(49) "/module/controller/action?tkey1=tval1&tkey2=tval2"
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top