$xmlStr = <<<xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<client_insetResponse xmlns="http://120.26.103.193:2017/webservices/">
<client_insetResult>0|</client_insetResult>
</client_insetResponse>
</soap:Body>
</soap:Envelope>
xml;
$xmlObj = simplexml_load_string($xmlStr);
var_dump($xmlObj);
The above code prints an empty object, indicating that the parsing failed
cannot be recognized
xmlns:soap
,xmlns:xsi
,xmlns:xsd
.You can process
xmlns:soap
改为xmlns-soap
again.The soap namespace is not recognized, refer to the following code: