以XML获取PHP Var_Dump输出

时间:2018-09-19 17:24:01

标签: php xml soap-client var-dump

我正在使用SoapClient从Web服务提供者返回数据。数据以典型的对象/数组PHP格式返回。我想以XML返回它。

这是我调用Web服务的代码(我省略了用户名和密码):

<?php
//Calling Chrome ADS with Build Data
 $client = new     SoapClient('http://services.chromedata.com/Description/7b?wsdl');
 $account = ['number'=>"", 'secret'=>"", 'country'=>"US",    'language'=>"en"];
 $switch =  ["ShowAvailableEquipment", "ShowExtendedTechnicalSpecifications", "ShowExtendedDescriptions"];
 $vin = $_POST["b12"];

 $result = $client->describeVehicle([
 'accountInfo' => $account,
 'switch' => $switch,
  'vin' => $vin
]);

var_dump ($result);

 ?>

以下是当前数据的输出方式:

object(stdClass)#2 (18) {
  ["responseStatus"]=>
  object(stdClass)#3 (2) {
    ["responseCode"]=>
    string(10) "Successful"
    ["description"]=>
    string(10) "Successful"
  }
  ["vinDescription"]=>
   object(stdClass)#4 (11) {
    ["WorldManufacturerIdentifier"]=>
    string(17) "Germany Audi Nsu "
    ["restraintTypes"]=>
    array(5) {
      [0]=>
  object(stdClass)#5 (3) {
    ["group"]=>
    object(stdClass)#6 (2) {
      ["_"]=>
      string(6) "Safety"
      ["id"]=>
      int(9)
    }
    ["header"]=>
    object(stdClass)#7 (2) {
      ["_"]=>
      string(17) "Air Bag - Frontal"
      ["id"]=>
      int(38)
    }
    ["category"]=>
    object(stdClass)#8 (2) {
      ["_"]=>
      string(14) "Driver Air Bag"
      ["id"]=>
      int(1001)
    }
  }

这是我希望数据输出的方式(这是通过SoapUI运行请求时的方式):

  <VehicleDescription country="US" language="en" modelYear="2008" bestMakeName="Audi" bestModelName="S4" bestStyleName="5dr Avant Wgn" xmlns="urn:description7b.services.chrome.com">
     <responseStatus responseCode="Successful" description="Successful"/>
     <vinDescription vin="WAUUL78E38A092113" modelYear="2008" division="Audi" modelName="S4" styleName="5dr Avant Wgn" bodyType="Wagon 4 Dr." drivingWheels="AWD" builddata="no">
        <WorldManufacturerIdentifier>Germany Audi Nsu</WorldManufacturerIdentifier>
        <restraintTypes>
           <group id="9">Safety</group>
           <header id="38">Air Bag - Frontal</header>
           <category id="1001">Driver Air Bag</category>
        </restraintTypes>
        <restraintTypes>
           <group id="9">Safety</group>
           <header id="38">Air Bag - Frontal</header>
           <category id="1002">Passenger Air Bag</category>
        </restraintTypes>
        <restraintTypes>
           <group id="9">Safety</group>
           <header id="39">Air Bag - Side</header>
           <category id="1005">Front Side Air Bag</category>
        </restraintTypes>
        <restraintTypes>
           <group id="9">Safety</group>
           <header id="39">Air Bag - Side</header>
           <category id="1007">Front Head Air Bag</category>
        </restraintTypes>

1 个答案:

答案 0 :(得分:1)

您可以使用__getLastResponse

  

返回上一次SOAP响应中收到的XML。

<?php
$client = SoapClient("http://services.chromedata.com/Description/7b?wsdl", array('trace' => 1));
$account = ['number'=>"", 'secret'=>"", 'country'=>"US",    'language'=>"en"];
$switch =  ["ShowAvailableEquipment", "ShowExtendedTechnicalSpecifications", "ShowExtendedDescriptions"];
$vin = $_POST["b12"];

$result = $client->describeVehicle([
    'accountInfo' => $account,
    'switch' => $switch,
    'vin' => $vin
]);

//htmlentitites just to see the result in the browser window
echo "Response :<br/>", htmlentities($client->__getLastResponse()), "<br/>";
?>