PHP SOAP : How can I return objects from PHP using SOAP? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T13:37:25Zhttp://stackoverflow.com/feeds/question/1006771http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1006771/php-soap-how-can-i-return-objects-from-php-using-soap0PHP SOAP : How can I return objects from PHP using SOAP? Jerry2009-06-17T12:43:15Z2009-08-06T10:00:03Z
<p>I need to send/return objects or array to/from PHP using SOAP. Any good links?</p>
http://stackoverflow.com/questions/1006771/php-soap-how-can-i-return-objects-from-php-using-soap/1006852#10068520Answer by Kyril for PHP SOAP : How can I return objects from PHP using SOAP? Kyril2009-06-17T12:58:02Z2009-06-17T12:58:02Z<p>Papa Google points me to this <a href="http://devzone.zend.com/article/689" rel="nofollow">Zend article</a> with lots of good examples on both the client and server aspects of working with Soap (in particular PHP5's implementation of it). Looks like a good starting point.</p>
<p>If you're somewhat like me, and cringe at the thought of writing up a WSDL by hand, I'd recommend using <a href="http://www.jool.nl/new/1,webservice%5Fhelper.html" rel="nofollow">WSHelper</a>, which uses PHP's reflection classes to dynamically generate a WSDL for you. Definitely a time-saver</p>