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'
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'