Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在大多数用于 Windows、Mac 和 Linux 的 php 安装中都是 curl。
我知道它是一个扩展,不必启用。
我正在发出肥皂请求,并且需要最常用的方法来发出这些请求。
对于 SOAP 请求,使用 SoapClient——它应该被启用。在命令行上运行php -m,soap应该会出现在模块列表中。对于其他 Web 请求,请使用 pear 库 HTTP_Request2 (http://pear.php.net/package/HTTP_Request2/redirected)。它可以通过 pear 或手动拉下并转储到您的库中。无需编译或更改 php 安装。
php -m
soap