Get received XML from PHP SOAP Server(从 PHP SOAP 服务器获取接收到的 XML)
问题描述
我在 symfony2 应用程序中使用内置的 SOAP-Server,除了处理 StdClass-Object,我还需要读取收到的完整 xml 以进行调试和记录.有没有办法简单地捕获传输的xml?它应该在请求头的某个地方,但我根本找不到它.
I'm using the build-in SOAP-Server within a symfony2 application and beside handling the StdClass-Object, I would need to read the complete xml received for debugging and logging. Is there a way to simply catch the transferred xml? It should be somewhere in the request header, but I simply can't find it there.
推荐答案
我一直在寻找同样的东西,终于找到了.希望这对您或其他人有所帮助.
I was looking for the same thing and finally found it. Hope this helps you or someone else.
$postdata = file_get_contents("php://input");
$postdata
变量将包含原始 XML.通过以下两个链接找到:
The $postdata
variable will have the raw XML. Found through the following two links:
http://php.net/manual/en/reserved.variables.httprawpostdata.php
http://php.net/manual/en/soapserver.soapserver.php
这篇关于从 PHP SOAP 服务器获取接收到的 XML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 PHP SOAP 服务器获取接收到的 XML
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01