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.
我的任务是在 PHP (5.3) 中设置服务器并用已经准备好的消息响应客户端。
是否有任何方法可以使用 SoapServer、NusoapServer 或 Zend 发布/响应原始数据?
如果您想检索原始 XML 请求文档,对其进行处理,然后发送原始 XML 响应文档,那么上述库可能都无法帮助您,因为它们都专门用于保护您免受这种复杂性的影响。
为了接收原始 XML 数据,您需要读取原始 POST 数据,最好这样完成:
$requestDocument = file_get_contents('php://input');
然后您需要处理它,构建您的响应文档并使用printor传输它echo。
print
echo