- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是使用symfony2的新手,我目前正在研究在其网站上找到的书籍文档,但是我遇到了这个问题,我的 Controller 出现此错误,我的代码没有意外或丢失的格式:
<?php
namespace Acme\StoreBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Acme\StoreBundle\Entity\Product;
use Symfony\Component\HttpFoundation\Response;
public function showproductAction()
{
$product = new Product();
$product->setName('A Foo Bar');
$product->setPrice('19.99');
$product->setDescription('Lorem ipsum dolor');
$em = $this->getDoctrine()->getManager();
$em->persist($product);
$em->flush();
return new Response('Created product id '.$product->getId());
}
最佳答案
您必须将action方法放入 Controller 类中。
我建议您在开始使用Symfony2之前先从基本的面向对象的PHP开始。
关于php - FatalErrorException : Parse: syntax error, unexpected T_PUBLIC in,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20986336/
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
这个问题不太可能帮助任何 future 的访客;它只与一个小地理区域、一个特定时刻或一个非常狭窄的情况相关,而这些情况通常不适用于互联网的全局受众。如需帮助使这个问题更广泛地适用,visit the
我是使用symfony2的新手,我目前正在研究在其网站上找到的书籍文档,但是我遇到了这个问题,我的 Controller 出现此错误,我的代码没有意外或丢失的格式: setName('A Fo
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我正在执行在 PHP 中使用对象类(class) (Codecademy.com) 中的 Property Panic (2),但出现此错误。这是我的代码: Reconstructing
我是一名优秀的程序员,十分优秀!