如何禁用 PHP 中的已编译扩展

发布于 2024-07-13 09:11:41 字数 265 浏览 9 评论 0原文

我的家庭系统有一个使用 SOAP 扩展编译的 PHP 版本。 实时系统有一个没有 SOAP 扩展的 PHP 版本,并且大多数脚本都非常依赖 NuSOAP 库。 NuSOAP 和 SOAP 扩展对它们的类​​使用相同的名称,这一事实令人非常头痛。

如何在不重新安装/重新编译的情况下禁用家庭系统上的 SOAP 扩展? 它是由 ini 文件中的 extension 指令编译的,而不是由 ini 文件中的 extension 指令启用。

My home system has a version of PHP compiled with the SOAP extension. The live system has a version of PHP without the SOAP extension, and most of the scripts rely on the NuSOAP library quite heavily. The fact that NuSOAP and the SOAP extension use the same names for their classes is a terrible headache.

How can I disable the SOAP extension on my home system without doing a reinstall / recompile? It's compiled in, and not enabled by a extension directive in a ini file.

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

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

发布评论

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

评论(1

近箐 2024-07-20 09:11:42

它是一个扩展,因此您可以在 php.ini 中禁用它。 只需注释掉该行即可。 之后记得重新启动 Apache。

我发现 nusoap 存在很多问题,因此升级到本机肥皂应该是一个优先事项。 如果这不能立即实现,最好切换到 nusoap-for-php5,因为它允许您同时运行本机肥皂扩展和 nusoap。 然后,您可以针对本机肥皂实现新代码,同时仍然使用 nusoap 来处理旧代码。

it's an extension, so you can disable it in php.ini. Just outcomment the line. Remember to restart Apache afterwards.

I have found nusoap to be rather buggy, so upgrading to native soap should be a priority. If this isn't immediately possible, it would be a good idea to switch to nusoap-for-php5, since it allows you to run both the native soap extension and nusoap alongside. You can then implement new code against native soap, while still using nusoap for legacy code.

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