一聚教程网:一个值得你收藏的教程网站

热门教程

NuSOAP 调用 Web Service 出现乱码的解决方法:

时间:2022-06-24 18:15:53 编辑:袖梨 来源:一聚教程网

研究过 NuSOAP 代码后我们会发现,当 xml_encoding 设置为 UTF-8 时,NuSOAP 会检测 decode_utf8 的设置,如果为 true ,会执行 PHP 里面的 utf8_decode 函数,而 NuSOAP 默认为 true,因此,我们需要设置:

 代码如下 复制代码

$client->soap_defencoding = 'utf-8';
$client->decode_utf8 = false;
$client->xml_encoding = 'utf-8';

热门栏目