3v4l.org

run code in 300+ PHP versions simultaneously
<?php $Value = 'rId4'; $rels= new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet2.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet1.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings" Target="sharedStrings.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/></Relationships>'); $rels->registerXPathNamespace('r', 'http://schemas.openxmlformats.org/package/2006/relationships'); $elems = $rels->xpath('/r:Relationships/r:Relationship[@Id and @Target and @Type = \'http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet\']'); echo get_class($elems[0]), PHP_EOL; echo get_class($elems[0]->Target), PHP_EOL; echo $elems[0]->Target, PHP_EOL; echo get_class($elems[0]->Target[0]), PHP_EOL; echo $elems[0]->Target[0], PHP_EOL; $map = []; foreach ( $elems as $elem ) { $map[$elem['Id']] = $elem['Target']; } print_r($map);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
SimpleXMLElement SimpleXMLElement Fatal error: Uncaught TypeError: get_class(): Argument #1 ($object) must be of type object, null given in /in/PZoLY:12 Stack trace: #0 {main} thrown in /in/PZoLY on line 12
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33
SimpleXMLElement SimpleXMLElement Warning: get_class() expects parameter 1 to be object, null given in /in/PZoLY on line 12 Warning: Illegal offset type in /in/PZoLY on line 18 Warning: Illegal offset type in /in/PZoLY on line 18 Array ( )
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
SimpleXMLElement SimpleXMLElement Warning: get_class() called without object from outside a class in /in/PZoLY on line 12 Warning: Illegal offset type in /in/PZoLY on line 18 Warning: Illegal offset type in /in/PZoLY on line 18 Array ( )

preferences:
160.43 ms | 403 KiB | 183 Q