Generate php code from wsdl

I have a bunch of web services for which I need to write PHP clients. Now I can manually write shells for each of the WSDL files, but I wanted to see if there is a tool that can help me by creating wrappers in PHP.

Any idea if there are any tools that do this?

+4
source share
3 answers

try this-> http://www.urdalen.no/wsdl2php/ it generates a php wrapper from the wsdl source

+5
source

You can try https://www.wsdltophp.com. It is convenient to generate a php class from a URI

And the author is @ Mikaël DELSOL. It is fantastic!

+3
source

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


All Articles