2
I’m using the Nusoap class to make a webservice.
However, when we have the php version for 7.0 or higher, I have problems with codes that are deprecated for this version.
I wonder if there is an alternative to the Nusoap class that works in php version 7.0.
I have currently changed the version of php on hosting that I am working on to version 5.6 and it apparently worked. Or have another way to make a webservice?
Nusoap is a library (3rd party) developed for PHP 4 and ported to PHP 5. In PHP 5, there is a native library named PHP SOAP, it is indicated in any version of PHP >= 5.
– Gabriel Heming