如何输出 Zend_Http_Client 将发送的 POST 数据列表?
我需要调试我的 Zend_Http_Client 代码,以便我确信我发送了所有正确的 POST 字段和字段。标头到我的服务器。如何输出将发送的 POST 字段列表,甚至整个 HTTP 命令是什么?
I need to debug my Zend_Http_Client code so that I am sure that I am sending all of the proper POST fields & headers to my server. How can I output the list of the POST fields which will be sent, or even what the entire HTTP command will be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明我错过了就在文档中:< /a>
getLastRequest()
将返回整个最后请求的字符串化版本!Turns out I missed it right in the documentation:
getLastRequest()
will return a stringified version of the entire last request!