0

Symfony では、現在の URI スラッグを配列として取得するにはどうすればよいですか?

www.mysite.com/this/that/test/hello/world/7?whatever=true

次の配列を取得するために使用するコマンド:

[0] => 'this',
[1] => 'that',
[2] => 'test',
[3] => 'hello',
[4] => 'world',
[5] => '7'
4

2 に答える 2

2

次のことを試してください。

explode('/', $request->getPathInfo());

(リクエストオブジェクトをどこから取得するのか実際にはわからないので、変数の名前を変更する必要があるかもしれません)

于 2012-09-05T15:05:26.503 に答える
0

これはうまくいくはずです:

 explode('/',$this->getContext()->getRouting()->getCurrentInternalUri());
于 2012-09-05T15:05:00.783 に答える