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;
哦,太棒了!謝謝! – user2622961