What should I do if php calls webservice and the code is garbled?
The solution to the garbled code when calling webservice in php: first open the "nusoap.php" file; then modify the content to "var $soap_defencoding = 'UTF-8';"; finally, specify the encoding when calling.
Recommended: "PHP Video Tutorial"
If there is Chinese in the webservice, the returned value will become Garbled code. I checked the response result and it is correct. There should be a problem when using nusoap to process it.
Changed two places in nusoap.php and it was OK.
Changed Place:
86行的:var $soap_defencoding = 'UTF-8'; 4998行的:var $decode_utf8 = false;
You can leave it unchanged, but you must specify the encoding when calling.
1. Server-side interface
$server=new soap_server(); //生成对象 $server->soap_defencoding = 'utf-8'; $server->decode_utf8 = false;
2. Calling interface
$client = new soapclient('http://localhost/TestService/Service1.asmx?WSDL', true); $client->soap_defencoding = 'UTF-8'; $client->decode_utf8 = false;
The above is the detailed content of What should I do if php calls webservice and the code is garbled?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

Zend Studio 13.0.1
Powerful PHP integrated development environment
