3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = <<<XML <MembershipCardInfo><CardNo>8898990000000083</CardNo><MemberID>1144582</MemberID><PrintedName /><MembershipTypeCode>MSR</MembershipTypeCode><MembershipStatusCode>ACTIVE</MembershipStatusCode><MembershipPhoto>8898990000000083.jpg</MembershipPhoto><IssueDate>2014-09-15T00:00:00</IssueDate><EffectiveDate>2014-09-15T00:00:00</EffectiveDate><ExpiryDate>2015-09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" /><tmpMembershipStatusCode /><PointsBAL>0.0000</PointsBAL><Remarks /><MembershipDiscount>0</MembershipDiscount><TierCode>Welcome</TierCode><TotalSpending>0</TotalSpending><TotalNettSpending>0</TotalNettSpending><TotalPoints>0</TotalPoints><TotalVisits>0</TotalVisits><LastVisitedOutletCode /><MostCycleVisitedOutletCode>394</MostCycleVisitedOutletCode><TotalCycleVisits>0</TotalCycleVisits><TotalCycleSpending>0</TotalCycleSpending><TotalCycleNettSpending>0</TotalCycleNettSpending><TotalCyclePoints>0</TotalCyclePoints><TotalBalPoints>0</TotalBalPoints><CurrentMonthSpending>0</CurrentMonthSpending><CurrentMonth_1Spending>0</CurrentMonth_1Spending><CurrentMonth_2Spending>0</CurrentMonth_2Spending><CurrentMonthNettSpending>0</CurrentMonthNettSpending><CurrentMonth_1NettSpending>0</CurrentMonth_1NettSpending><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo><MembershipCardInfo><CardNo>8898000000000260</CardNo><MemberID>1144582</MemberID><PrintedName>Test</PrintedName><MembershipTypeCode>MSR</MembershipTypeCode><MembershipStatusCode>ACTIVE</MembershipStatusCode><MembershipPhoto>Featured.jpg</MembershipPhoto><IssueDate>2014-09-19T00:00:00</IssueDate><EffectiveDate>2014-09-19T00:00:00</EffectiveDate><ExpiryDate>2017-09-20T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" /><tmpMembershipStatusCode /><PointsBAL>0.0000</PointsBAL><Remarks /><MembershipDiscount>0</MembershipDiscount><TierCode>Unassigned</TierCode><TotalSpending>18.2</TotalSpending><TotalNettSpending>18</TotalNettSpending><TotalPoints>0</TotalPoints><TotalVisits>1</TotalVisits><LastVisitedOutletCode>394</LastVisitedOutletCode><MostCycleVisitedOutletCode /><TotalCycleVisits>1</TotalCycleVisits><TotalCycleSpending>18.2</TotalCycleSpending><TotalCycleNettSpending>18</TotalCycleNettSpending><TotalCyclePoints>0</TotalCyclePoints><TotalBalPoints>0</TotalBalPoints><CurrentMonthSpending>18.2</CurrentMonthSpending><CurrentMonth_1Spending>0</CurrentMonth_1Spending><CurrentMonth_2Spending>0</CurrentMonth_2Spending><CurrentMonthNettSpending>0</CurrentMonthNettSpending><CurrentMonth_1NettSpending>0</CurrentMonth_1NettSpending><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> XML; $xml = simplexml_load_string($x); $i = 0; foreach ($xml->MembershipCardInfo as $card): $cardArray[$i] = $card->CardNo; $i++; endforeach; foreach ($cardArray as $item) { echo $item.'<br />'; }
Output for 8.3.0 - 8.3.6
Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on PrintedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): -09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on RenewedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): rinted>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpEffectiveDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpExpiryDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): i:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): Entity: line 1: parser error : Extra content at the end of the document in /in/5uf2h on line 6 Warning: simplexml_load_string(): ><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: Attempt to read property "MembershipCardInfo" on false in /in/5uf2h on line 9 Warning: foreach() argument must be of type array|object, null given in /in/5uf2h on line 9 Warning: Undefined variable $cardArray in /in/5uf2h on line 14 Warning: foreach() argument must be of type array|object, null given in /in/5uf2h on line 14
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on PrintedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): -09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on RenewedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): rinted>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpEffectiveDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpExpiryDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): i:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): Entity: line 1: parser error : Extra content at the end of the document in /in/5uf2h on line 6 Warning: simplexml_load_string(): ><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: Attempt to read property "MembershipCardInfo" on bool in /in/5uf2h on line 9 Warning: foreach() argument must be of type array|object, null given in /in/5uf2h on line 9 Warning: Undefined variable $cardArray in /in/5uf2h on line 14 Warning: foreach() argument must be of type array|object, null given in /in/5uf2h on line 14
Output for 7.2.0 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.33
Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on PrintedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): -09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on RenewedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): rinted>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpEffectiveDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpExpiryDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): i:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): Entity: line 1: parser error : Extra content at the end of the document in /in/5uf2h on line 6 Warning: simplexml_load_string(): ><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Notice: Trying to get property 'MembershipCardInfo' of non-object in /in/5uf2h on line 9 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 9 Notice: Undefined variable: cardArray in /in/5uf2h on line 14 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 14
Output for 7.3.32 - 7.3.33
Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on PrintedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): -09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on RenewedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): rinted>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpEffectiveDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpExpiryDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): i:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): Entity: line 1: parser error : Extra content at the end of the document in /in/5uf2h on line 6 Warning: simplexml_load_string(): ><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 9 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 14
Output for 5.2.1 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on PrintedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): -09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on RenewedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): rinted>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpEffectiveDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpExpiryDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): i:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): Entity: line 1: parser error : Extra content at the end of the document in /in/5uf2h on line 6 Warning: simplexml_load_string(): ><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Notice: Trying to get property of non-object in /in/5uf2h on line 9 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 9 Notice: Undefined variable: cardArray in /in/5uf2h on line 14 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 14
Output for 5.1.0 - 5.1.1, 5.1.3 - 5.1.6, 5.2.0
Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on PrintedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): -09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on RenewedDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): rinted>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpEffectiveDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpExpiryDate is not defined in /in/5uf2h on line 6 Warning: simplexml_load_string(): i:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: simplexml_load_string(): Entity: line 1: parser error : Extra content at the end of the document in /in/5uf2h on line 6 Warning: simplexml_load_string(): ><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> in /in/5uf2h on line 6 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 6 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 9 Notice: Undefined variable: cardArray in /in/5uf2h on line 14 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 14
Output for 5.1.2
Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on PrintedDate is not defined in /in/5uf2h on line 7 Warning: simplexml_load_string(): -09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" in /in/5uf2h on line 7 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 7 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on RenewedDate is not defined in /in/5uf2h on line 7 Warning: simplexml_load_string(): rinted>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" in /in/5uf2h on line 7 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 7 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpEffectiveDate is not defined in /in/5uf2h on line 7 Warning: simplexml_load_string(): xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" in /in/5uf2h on line 7 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 7 Warning: simplexml_load_string(): namespace error : Namespace prefix xsi for nil on tmpExpiryDate is not defined in /in/5uf2h on line 7 Warning: simplexml_load_string(): i:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" in /in/5uf2h on line 7 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 7 Warning: simplexml_load_string(): Entity: line 1: parser error : Extra content at the end of the document in /in/5uf2h on line 7 Warning: simplexml_load_string(): ><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> in /in/5uf2h on line 7 Warning: simplexml_load_string(): ^ in /in/5uf2h on line 7 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 10 Notice: Undefined variable: cardArray in /in/5uf2h on line 15 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 15
Output for 5.0.0 - 5.0.5
Warning: namespace error : Namespace prefix xsi for nil on PrintedDate is not defined in /in/5uf2h on line 6 Warning: -09-15T00:00:00</ExpiryDate><Printed>false</Printed><PrintedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: ^ in /in/5uf2h on line 6 Warning: namespace error : Namespace prefix xsi for nil on RenewedDate is not defined in /in/5uf2h on line 6 Warning: rinted>false</Printed><PrintedDate xsi:nil="true" /><RenewedDate xsi:nil="true" in /in/5uf2h on line 6 Warning: ^ in /in/5uf2h on line 6 Warning: namespace error : Namespace prefix xsi for nil on tmpEffectiveDate is not defined in /in/5uf2h on line 6 Warning: xsi:nil="true" /><RenewedDate xsi:nil="true" /><tmpEffectiveDate xsi:nil="true" in /in/5uf2h on line 6 Warning: ^ in /in/5uf2h on line 6 Warning: namespace error : Namespace prefix xsi for nil on tmpExpiryDate is not defined in /in/5uf2h on line 6 Warning: i:nil="true" /><tmpEffectiveDate xsi:nil="true" /><tmpExpiryDate xsi:nil="true" in /in/5uf2h on line 6 Warning: ^ in /in/5uf2h on line 6 Warning: Entity: line 1: parser error : Extra content at the end of the document in /in/5uf2h on line 6 Warning: ><CurrentMonth_2NettSpending>0</CurrentMonth_2NettSpending></MembershipCardInfo> in /in/5uf2h on line 6 Warning: ^ in /in/5uf2h on line 6 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 9 Warning: Invalid argument supplied for foreach() in /in/5uf2h on line 14
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: simplexml_load_string() in /in/5uf2h on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.4
Fatal error: Call to undefined function: simplexml_load_string() in /in/5uf2h on line 6
Process exited with code 255.
Output for 4.4.2
Fatal error: Call to undefined function: simplexml_load_string() in /in/5uf2h on line 7
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: simplexml_load_string() in /in/5uf2h on line 6

preferences:
250.16 ms | 401 KiB | 313 Q