什么二进制文件 - 线程安全/非线程安全,可与 PHP/WAMP 一起使用?
我正在尝试在 Windows 7、WAMP 服务器 2.2、PHP、Komodo IDE 平台上设置远程调试。我需要从以下列表中选择 Komodo 调试器 DLL:
- nts-v6-x86
- nts-vc9-x86
- ts-v6-x86
- ts-v9-x86
不知道在这种情况下选择哪种类型的二进制文件。有人可以告诉我吗?
I'm trying to get remote debugging set up on a Windows 7, WAMP server 2.2, PHP, Komodo IDE platform. I need to select a Komodo debugger DLL from the following list:
- nts-v6-x86
- nts-vc9-x86
- ts-v6-x86
- ts-v9-x86
Have no idea which type of binary to choose in this situation. Can someone clue me in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Wamp 2.2 是用 VC9 构建的。这意味着要将 PHP 的 mod_php 与 Apache 2.2 一起使用,您需要 PHP 的线程安全版本。
对于 Fastcgi(带有 mod_fastcgi)或 CLI 使用,您可以而且应该使用非线程安全 (NTS) 版本。
Wamp 2.2 has been built with VC9. That means that to use PHP's mod_php with Apache 2.2, you need the thread safe version of PHP.
For Fastcgi (with mod_fastcgi) or CLI usage, you can and should use the non thread safe (NTS) version.
适用于 Windows 的 PHP 二进制文件以非线程安全 (nts) 或线程安全 (ts) 版本分发,并针对 VC9 或 VC6 构建:
您应该选择与您已安装的 PHP 发行版相匹配的调试器。
PHP binaries for Windows are distributed in version that are non-thread safe (nts) or thread safe (ts) and built against VC9 or VC6:
You should select the debugger that matches the PHP distribution you have installed.