在 Symfony2 中使用 Imagick?
我正在尝试将 Imagick 与 Symfony2 一起使用,但每次我尝试使用它时,都会出现以下错误:
Fatal error: Class 'Acme\TestBundle\Services\Imagick' not found...
我在已设置管理图像的服务中使用 Imagick。我需要做什么才能使用这个类?
我可以确认 Imagick 扩展正在服务器上运行并且正在被其他站点使用。
预先感谢您的任何帮助。
I am trying to use Imagick with Symfony2, but every time I try and use it, it gives me the following error:
Fatal error: Class 'Acme\TestBundle\Services\Imagick' not found...
I am using Imagick in a service I have setup to manage my images. What do I need to do to be able to use this class?
I can confirm the Imagick extension is working on the server and is in use by other sites.
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您实例化 Imagick 类时,请使用完整的限定类名:
这将使 PHP 不会在当前命名空间内查找类
Imagick
。有关更详细的解释,请参阅类似的问题/答案:PHP 命名空间和内置类出现问题,如何修复? 和 如何使用 php 的“根”命名空间?。
When you instantiate the Imagick class, use a full quallified class-name:
This will make PHP not look for the class
Imagick
within the current namespace.For a more detailed explanation see a similar Question/Answer: Problems with PHP namespaces and built-in classes, how to fix? and How to use "root" namespace of php?.