0

我有以下字符串,我想从这个字符串中解析用户名和密码......

 $xmlstring='<soap-env:envelope xmlns:ns1="http://back.com/"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
            xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" 
            xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
            <soap-env:header></soap-env:header>
            <soap-env:body>
               <ns1:createuserresponse>
                  <username>qqq_d481</username>
                  <password>sdfdssdfds</password>
                  <result>
                     <succeeded>true</succeeded>
                     <errorcode>0</errorcode>
                     <errortext></errortext>
                  </result>
               </ns1:createuserresponse>
            </soap-env:body>
           </soap-env:envelope>';

请建议。

上面的字符串是 SOAP 响应

但如果我使用:

$xmlstring='<soap-env:envelope>
<soap-env:header></soap-env:header>
<soap-env:body>
    <ns1:createuserresponse>
        <username>qqq_d481</username>
        <password>sdfdssdfds</password>
        <result>
            <succeeded>true</succeeded>
            <errorcode>0</errorcode>
            <errortext></errortext>
        </result>
    </ns1:createuserresponse>
</soap-env:body></soap-env:envelope>';



echo $xmltoparse= $xmlstring;
$xml = simplexml_load_string($xmltoparse);
print_r($xml); 

然后它工作正常

4

3 回答 3

0

不知道我完全理解你想要做什么,但也许是这样的?

** 未经测试的代码,但可能会有所帮助

public function parseLoginResponse($loginResponse)
{
    $match = array(
        'username' => 'username',
        'password' => 'password',
        'succeeded' => 'succeeeded',
        'errortext' => 'errortext'
    );

    $this->_match($match, $loginResponse);

    return array(
        'user' => $this->username,
        'pass' => $this->password,
        'success' => $this->succeeded,
        'error' => $this->errortext
    );
}
于 2012-07-14T13:36:17.033 回答
0

也许您可以使用 PHP5 Soap Client,而不是这里建议的 simple_xml_parser如何解析 SOAP XML?

于 2012-07-14T13:17:21.620 回答
0

尝试使用以下 asXML 函数将为您提供一个 xml 格式的字符串

print_r(htmlentities($xmldata->asXML()));

有关更多信息,请查看以下链接

Simplexml_load_string($string) 返回一个空对象但 $string 包含 xml?下面的代码

于 2012-07-16T08:16:55.697 回答