$client = new soapclient('http://www.webxml.com.cn/webservices/traditionalsimplifiedwebservice.asmx?wsdl');
$client->soap_defencoding = 'utf-8';
$client->decode_utf8 = false;
$obj = $client->totraditionalchinese(array('stext'=>'个'));
print_r($obj);
?>
这个是我写的一个调用网上公开的简繁转换的webservice的代码,我已经指定了soap_defencoding为utf-8,decode_utf8设置成false,但是执行了之后提示【encoding: string '\xb8...' is not a valid utf-8 string 】
请大家帮忙看看这个该怎么处理
分享到: '个' 不是utf-8 的
也就是说你的程序文件不是 utf-8 的
不过,如果是 utf-8 的,又何必声明字符集呢?
另外
$client->soap_defencoding = 'utf-8';
$client->decode_utf8 = false;
是 nusoap 的写法
