2013-07-26 86 views
0

我想爲城市設置一個默認值爲「ABC」,我怎麼能在這個代碼中做到這一點?另外,是否有任何示例可以爲此集合添加多條路線?PHP中的Symfony路由

<?php 

use Symfony\Component\Routing\RouteCollection; 
use Symfony\Component\Routing\Route; 

$collection = new RouteCollection(); 

$collection->add('hello_world_first_homepage', new Route('/weather/{city}', array(
    '_controller' => 'HelloWorldFirstBundle:Default:index', 
))); 

return $collection; 

回答

2

作爲here所定義的,Route構造取作爲第二參數的array of default values

然後,您可以將'city' => "ABC'添加到您用於初始化新路線的數組中。

+0

哦,太棒了!謝謝! – user2622961