3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str=<<<XML <scales> <scale id="1" gender="*" age="*"> <d scid="hi" raw="10" t="76" /> <d scid="pn" raw="12" t="80" /> </scale> <scale id="2" gender="m" age="*"> <d scid="hi" raw="8" t="79" /> <d scid="pn" raw="2" t="50" /> </scale> <scale id="3" gender="*" age="19-39"> <d scid="hi" raw="0" t="48" /> <d scid="pn" raw="10" t="49" /> </scale> </scales> XML; $xml=simplexml_load_string($str); $result=$xml->xpath('//scale[@gender="*" or @gender="m"][@age="*" or @age="39-59"]/d/@raw'); var_dump($result);
Output for git.master, git.master_jit, rfc.property-hooks
array(4) { [0]=> object(SimpleXMLElement)#2 (1) { ["@attributes"]=> array(1) { ["raw"]=> string(2) "10" } } [1]=> object(SimpleXMLElement)#3 (1) { ["@attributes"]=> array(1) { ["raw"]=> string(2) "12" } } [2]=> object(SimpleXMLElement)#4 (1) { ["@attributes"]=> array(1) { ["raw"]=> string(1) "8" } } [3]=> object(SimpleXMLElement)#5 (1) { ["@attributes"]=> array(1) { ["raw"]=> string(1) "2" } } }

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:
43.58 ms | 402 KiB | 8 Q