user3339988
user3339988

Reputation: 414

How PHP Soap Client converts XML to a stdClass Object

PHPs native soap client returns the XML response as a std class object. Can someone tell me how it is done, there has to be some inbuilt parse function to do that rt?

Upvotes: 0

Views: 654

Answers (1)

SparK
SparK

Reputation: 5211

Yes, it does.

And it uses libxml to parse the SOAP request: SourceCode

Upvotes: 1

Related Questions