php报错,调用非对象上的成员函数validate
1 回答
慕桂英546537
TA贡献1848条经验 获得超10个赞
命名空间Venom \ CoreBundle;使用Symfony \ Component \ HttpKernel \ Bundle \ Bundle;use \ Symfony \ Component \ DependencyInjection \ ContainerInterface;VenomCoreBundle类扩展了Bundle{
private static $ containerInstance = null;
public function setContainer(ContainerInterface $ container = null)
{
父:: setContainer($容器);
self :: $ containerInstance = $ container;
}
public static function getContainer()
{
return self :: $ containerInstance;
}
}
使用适当的命名空间。然后,在需要容器的类中使用bundle的命名空间。您可以通过调用容器
$ container = VenomCoreBundle :: getContainer()
- 1 回答
- 0 关注
- 905 浏览
添加回答
举报
0/150
提交
取消