- 问题一
书中P47中,4-7这处的代码:
// src/Acme/DemoBundle/Controller/RandomController.php
namespace Acme\DemoBundle\Controller;
use Symfony\Component\HttpFoundation\Response;
class RandomController
{
public function indexAction($limit)
{
return new Response(
'<html><body>Number: '.rand(1, $limit).'</body></html>'
);
}
}
应当在前后加入<?php ?>
标签