fork download
  1. <?php
  2. $xmls = '<response>
  3. <result-code fatal="false">0</result-code>
  4. <bills-list>
  5. <bill id="1380271108" status ="60" error="0" sum="0.20" />
  6. </bills-list>
  7. </response>';
  8.  
  9. $xml = simplexml_load_string($xmls);
  10.  
  11. //print_r($xml);
  12.  
  13. $bl = "bills-list";
  14. echo "id " . (int)$xml->$bl->bill[0]["id"] ."\n";
  15. echo "status " . (int)$xml->$bl->bill[0]["status"] ."\n";
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
id 1380271108
status 60