XML形式でデータを返す.NETWebサービスからの応答にアクセスする必要があります。返されたデータを分割するにはどうすればよいですか?たとえば、データをいくつかのPHP変数に解析したいと思います。
$name = "Dupont";
$email = "charles.dupont@societe.com";
私は長い間、正しい方法を見つけることなくこれを行う方法を探していました。
私のスクリプトは次のとおりです。
$result = $client->StudentGetInformation($params_4)->StudentGetInformationResult;
echo "<p><pre>" . print_r($result, true) . "</pre></p>";
私のページのエコーは次のとおりです。
stdClass Object
(
[any] => 0Successful10371DupontCharlescharles.dupont@societe.com1234charles.dupont@societe.comfalsefr-FR1003FIRST FINANCE1778AAA Département
)
Webサービスの応答形式は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<StudentGetInformationResponse xmlns="http://tempuri.org/">
<StudentGetInformationResult>xml</StudentGetInformationResult>
</StudentGetInformationResponse>
</soap:Body>
</soap:Envelope>
私はあなたの例を試しました。しかし、それは私が必要とすることをしません。返された値を分割する必要があります。データを取得してPHP変数に入れたいと思います。
$ name="デュポン"; $ email = "charles.dupont@societe.com"; 等...
残念ながら、あなたの例のエコーは次のようになります。
object(stdClass)#1 (1) { ["StudentGetInformationResult"]=> object(stdClass)#11 (1) { ["any"]=> string(561) "0Successful10371DupontCharlescharles.dupont@societe.com1234charles.dupont@societe.comfalsefr-FR1003FIRST FINANCE1778AAA Département" } }