3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<'XML' <products> <product category="Desktop"> <name> Desktop 1 (d)</name> <price>499.99</price> </product> <product category="Tablet"> <name>Tablet 1 (t)</name> <price>1099.99</price> </product> </products> XML; $reader = new XMLReader; $reader->open('data://text/xml,'.$xml); $dom = new DOMDocument; $xpath = new DOMXpath($dom); // look for the first product element while ($reader->read() && $reader->localName !== 'product') { continue; } // while you have an product element while ($reader->localName === 'product') { $node = $reader->expand($dom); var_dump( $xpath->evaluate('string(@category)', $node), $xpath->evaluate('string(name)', $node), $xpath->evaluate('number(price)', $node) ); // move to the next product sibling $reader->next('product'); }
Output for git.master, git.master_jit, rfc.property-hooks
string(7) "Desktop" string(14) " Desktop 1 (d)" float(499.99) string(6) "Tablet" string(12) "Tablet 1 (t)" float(1099.99)

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
55.73 ms | 401 KiB | 8 Q