Symfony 2:处理 COM 对象

发布于 2024-12-17 06:18:52 字数 391 浏览 0 评论 0 原文

我想在我的 Symfony 2 控制器中使用 COM 对象。 COM 肯定是 PHP 5 的一部分,所以我猜应该不会有问题。

这是我的代码:

$ObjectFactory = new COM("CrystalReports11.ObjectFactory.1");

Symfony 返回给我这个错误:

Class 'App\InterfaceBundle\Controller\COM' not found

我在 Windows 7 上,使用 PHP 5.3。当显示 phpinfo 时,我可以看到 COM 对象支持已启用。

我做错了什么?是否需要在控制器中包含任何 PHP 内容才能使其正常工作?

I would like to use a COM object in my Symfony 2 Controller. COM must be a part of PHP 5, so I guessed there would have been no problem.

Here is my code:

$ObjectFactory = new COM("CrystalReports11.ObjectFactory.1");

And Symfony returns me this error:

Class 'App\InterfaceBundle\Controller\COM' not found

I'm on Windows 7, using PHP 5.3. When displaying phpinfo, I can see COM object support enabled.

What am I doing wrong? Is there any PHP inclusion to make in the Controller to make it work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放赐 2024-12-24 06:18:52

您正在名为 App\InterfaceBundle\Controller 的命名空间中工作,因此 PHP 正在该命名空间内查找类 COM

将代码更改为以下内容将明确告诉 PHP 从“全局空间”而不是当前命名空间加载类:

$ObjectFactory = new \COM("CrystalReports11.ObjectFactory.1");

您可以在 PHP 手册中阅读有关命名空间的更多信息:http://www.php.net/manual/en/language.namespaces.php

You're working in a namespace called App\InterfaceBundle\Controller, so PHP is looking for the class COM within that namespace.

Changing your code to the following will explicitly tell PHP to load the class from the "global space" rather than the current namespace:

$ObjectFactory = new \COM("CrystalReports11.ObjectFactory.1");

You can read more about namespaces in the PHP manual: http://www.php.net/manual/en/language.namespaces.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文