我正在使用nusoap库,当我发送中文作为输入时,响应不支持中文,结果输出是????。
请帮助如何获得中文作为回应。
答案 0 :(得分:0)
当您实例化nusoap时,请尝试这样:
$nuso = new nusoap_client('http://test.com/');
$nuso->soap_defencoding = 'UTF-8';
$nuso->decode_utf8 = false;
$res = $nuso->call('testFunction');
问题似乎是在将decode_utf8
参数声明为true时。
希望它有效。