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 的 PDO 通过 Web 服务进行数据库连接。在通过 SOAP 返回 PDO 对象时,我得到的 SOAP 响应为
<value xsi:type="SOAP-ENC:Struct"/>
在倾销我得到的价值
object(stdClass)#4 (0) { }
如何将 stdClass 的这个对象转换为 PDO 对象,因为我需要在整个应用程序中维护该对象以执行查询?还是我根本不应该为数据库连接使用服务?