致命错误:类“Symfony\Component\Form”未找到
当我为用户创建表单时。它显示以下错误
Fatal error: Class 'Symfony\Component\Form' not found in D:\wamp\www\sandbox\src\Sensio\HelloBundle\User\UserForm.php on line 7"
以下是 UserForm.php 的代码
<?php
use Symfony\Component\Form;
use Symfony\Component\Form\TextField;
use Symfony\Component\Form\EmailField;
class UserForm extends Form
{
protected function configure()
{
$this->add(
new TextField('name',
array('max_length' => 100,
'required' => true
)
)
);
$this->add(
new EmailField('email',
array('max_length' => 100,
'required' => true
)
)
);
}
}
When i'm creating form for user. It displaying below error
Fatal error: Class 'Symfony\Component\Form' not found in D:\wamp\www\sandbox\src\Sensio\HelloBundle\User\UserForm.php on line 7"
Below are the code of UserForm.php
<?php
use Symfony\Component\Form;
use Symfony\Component\Form\TextField;
use Symfony\Component\Form\EmailField;
class UserForm extends Form
{
protected function configure()
{
$this->add(
new TextField('name',
array('max_length' => 100,
'required' => true
)
)
);
$this->add(
new EmailField('email',
array('max_length' => 100,
'required' => true
)
)
);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 'use Symfony\Component\Form' 替换为 'use Symfony\Component\Form\Form'(第 3 行)。
Replace 'use Symfony\Component\Form' by 'use Symfony\Component\Form\Form' (line 3).
如果您收到
致命错误:在 symfony 中找不到类“UsersForm”,
请使用以下命令:
$ php symfony cc
或
$ php symfony 缓存:清除
If you are getting
Fatal error: Class 'UsersForm' not found in symfony
use below command :
$ php symfony cc
OR
$ php symfony cache:clear