PHP 8.3.4 Released!

Yaf_Route_Rewrite::assemble

(Yaf >=2.3.0)

Yaf_Route_Rewrite::assembleAssemble a url

Descrição

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

Assemble a url.

Parâmetros

info

query

Valor Retornado

Returns string.

Exemplos

Exemplo #1 Yaf_Route_Rewrite::assemble()example

router = new Yaf_Router();

$route = new Yaf_Route_Rewrite(
"/product/:name/:id/*",
array(
'controller' => "product",
),
array()
);

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

var_dump($router->getRoute('rewrite')->assemble(
array(
':name' => 'foo',
':id' => 'bar',
':tmpkey1' => 'tmpval1'
),
array(
'tkey1' => 'tval1',
'tkey2' => 'tval2'
)
)
);

O exemplo acima produzirá algo semelhante a:

string(57) "/product/foo/bar/tmpkey1/tmpval1/?tkey1=tval1&tkey2=tval2"
add a note

User Contributed Notes

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