ne0bot / nusoap

NuSOAP 为 PHP 5.4 - 7.1 修复版

维护者

详细信息

github.com/ne0bot/nusoap

源代码

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

This package is not auto-updated.

Last update: 2024-09-29 04:48:58 UTC


README

Downloads total Latest stable

修复 PHP 5.4, 5.5, 5.6, 7.0 和 7.1 的 NuSOAP 分支(已测试)。

所有荣誉归原作者所有: http://nusoap.sourceforge.net

讨论 / 帮助

Join the chat

安装

$ composer require econea/nusoap

用法

// 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);