How to use SOAP / WSDL in PHP 4?

In particular, I'm trying to make the Google AdWords API using PHP 4. What are my options? Any references to a class that I could use, sample code, etc., would be greatly appreciated.

Thanks.

+3
source share
2 answers

I had no problems with NuSOAP

And here is an example of using NuSOAP with the Google API

+5
source

you can use wsdl2php to create a php proxy from a wsdl file. subsequently, you can use the generated proxy to send and receive information from the web service.

+1

Source: https://habr.com/ru/post/1702922/


All Articles