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.
有没有办法保存 SoapClient 在调用 __soapCall 到文件而不是将其发送到实际服务器时发送的肥皂请求?
我正在尝试将肥皂请求保存到队列中,然后在一段时间内发送它们(请求会非常不同)。
我正在使用 Zend_Soap。
看看 Zend_Soap_Client_Local,尤其是 _doRequest() 方法,并用自己的逻辑构建自己的类。
如果您想看看他们如何使用 Zend_Soap_Client_Local,请查看 tests/Zend/Soap/ClientTest.php,方法 testGetFunctions()。