PHP SOAP : How can I return objects from PHP using SOAP? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:37:25Z http://stackoverflow.com/feeds/question/1006771 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1006771/php-soap-how-can-i-return-objects-from-php-using-soap 0 PHP SOAP : How can I return objects from PHP using SOAP? Jerry 2009-06-17T12:43:15Z 2009-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#1006852 0 Answer by Kyril for PHP SOAP : How can I return objects from PHP using SOAP? Kyril 2009-06-17T12:58:02Z 2009-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>