ne0bot/nusoap

NuSOAP fixed for PHP 5.4 - 7.1

dev-master 2018-03-02 00:06 UTC

This package is not auto-updated.

Last update: 2024-04-28 02:27:12 UTC


README

Downloads total Latest stable

Fork of NuSOAP fixed for PHP 5.4, 5.5, 5.6, 7.0 and 7.1 (tested).

All credits belongs to official author(s): http://nusoap.sourceforge.net.

Discussion / Help

Join the chat

Install

$ composer require econea/nusoap

Usage

// Config
$client = new nusoap_client('example.com/api/v1', 'wsdl');
$client->soap_defencoding = 'UTF-8';
$client->decode_utf8 = FALSE;

// Calls
$result = $client->call($action, $data);