3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<XML <types> <type name="ACOGOptic"> <nominal>15</nominal> <lifetime>14400</lifetime> <restock>1800</restock> <min>8</min> <quantmin>-1</quantmin> <quantmax>-1</quantmax> <cost>100</cost> <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/> <category name="weapons"/> <usage name="Military"/> </type> </types> XML; $dom = new DOMDocument(); $dom->loadxml($xml); $xpath = new DOMXPath($dom); echo $xpath->evaluate('string(/types/type[@name]/@name)');
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
ACOGOptic

preferences:
53.58 ms | 402 KiB | 62 Q