Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 nusoap 库,当我发送中文作为输入时,响应不支持中文并且结果输出是????。
请帮助如何获得中文作为回应。
当您实例化一个 nusoap 时,可以这样尝试:
$nuso = new nusoap_client('http://test.com/'); $nuso->soap_defencoding = 'UTF-8'; $nuso->decode_utf8 = false; $res = $nuso->call('testFunction');
问题似乎出在将decode_utf8参数声明为 true 时。
decode_utf8
希望它有效。