3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xmlstr = <<<XML <Search xmlns:xsd="https://xml.proveid.experian.com/xsd/Search.xsd"> <CountryCode>GBR</CountryCode> <Person> <Name><Forename>Baken</Forename> <Surname>Jorure</Surname> </Name> <DateOfBirth>1989-09-09</DateOfBirth> <Age>26</Age> </Person> <Addresses> <Address Current="1"> <Premise>410</Premise> <Street>Beuno Terrace</Street> <PostTown>Beuno</PostTown> <Region/> <Postcode>LL545BT</Postcode> <CountryCode>GBR</CountryCode> </Address> </Addresses> <Telephones> <Telephone> <Number>01154567892</Number> </Telephone> </Telephones> <IPAddress>127.0.0.1</IPAddress> <Emails> <Email>bakenjorure@www.com</Email> </Emails> <SearchOptions> <ProductCode>ProveID</ProductCode> </SearchOptions> <OurReference>B3C369C0-F001-4FB1-80D3-801CB9D872FE</OurReference> <SearchDate>2015-10-09T23:46:54</SearchDate> <Result> <Summary> <ReportSummary> <DatablocksSummary> <DatablockSummary> <Name>CreditReference</Name> <Decision/> </DatablockSummary> </DatablocksSummary> </ReportSummary> <DecisionMatrix Code="ECIGSUAT" Name="Electronic Cigarettes"> <Decision> <Outcome Type="Primary">0</Outcome> <Reason>Individuals DOB has not matched to active CAIS ER or Citizen Card therefore application has been referred </Reason> </Decision> </DecisionMatrix> </Summary> </Result> </Search> XML; $data = new SimpleXMLElement($xmlstr); var_dump($data->Result->Summary->DecisionMatrix->Decision->Outcome);
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.16, 7.3.18 - 7.3.33, 7.4.0 - 7.4.4, 7.4.6 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
object(SimpleXMLElement)#4 (2) { ["@attributes"]=> array(1) { ["Type"]=> string(7) "Primary" } [0]=> string(1) "0" }
Output for 7.3.17, 7.4.5
object(SimpleXMLElement)#4 (2) { ["@attributes"]=> array(1) { ["Type"]=> string(7) "Primary" } [0]=> object(SimpleXMLElement)#3 (2) { ["@attributes"]=> array(1) { ["Type"]=> string(7) "Primary" } [0]=> string(1) "0" } }

preferences:
148.49 ms | 402 KiB | 378 Q