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.
我正在使用 Web 服务(使用 SOAP 和 WSDL)连接到数据库(PDO 连接)和运行查询。我希望 PDO 对象在整个应用程序中保持全局以执行查询。但是在数据库连接后发送 PDO 对象时,我得到的 SOAP 响应是 stdClass 对象而不是 PDO 对象。如何获取 PDO 对象作为肥皂响应?请帮忙。
您不能将肥皂对象作为 PDO 对象。SOAP 是一种基于 XML 的协议,当 PHP 解析 XML 时,它会创建 stdClass。
如果要将 stdClass '转换'为 PDO 对象,则必须编写自己的代码。