3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * What is the DOM Core Version is Supported by PHP DOM? */ $dom = new DOMDocument(); $dom->loadXML('<root/>'); $element = $dom->documentElement; function dom_list_feature(DOMDocument $dom, $feature, array $versions) { echo "$feature Feature is in PHP DOMDocument implementation:\n\n"; $found = []; foreach ($versions as $i => $version) { $result = $dom->implementation->hasFeature($feature, $version); if ($result) { $found[] = $version; } printf(" %d.) $feature %' -5s: %s\n", $i + 1, var_export($version, true), $result ? 'TRUE' : 'FALSE'); } $formatter = new NumberFormatter('en_UK', NumberFormatter::SPELLOUT); $count = ucfirst($formatter->format($found)); printf("\n%s %s versions found%s.\n\n", $count, $feature, $found ? ': ' . implode('; ', $found) : ''); } # Test DOMDocument in PHP Support for DOM-Core Feature # Document Object Model (DOM) <http://www.w3.org/DOM/DOMTR> dom_list_feature($dom, "Core", ['3.0', '2.0', '1.0', '', NULL]); # Test DOMDocument in PHP Support for DOM-XPath Feature # Document Object Model XPath <http://www.w3.org/TR/DOM-Level-3-XPath/xpath.html> dom_list_feature($dom, "XPath", ['3.0', '2.0', '1.0', '', NULL]);
Output for git.master, git.master_jit, rfc.property-hooks
Core Feature is in PHP DOMDocument implementation: 1.) Core '3.0': FALSE 2.) Core '2.0': FALSE 3.) Core '1.0': TRUE 4.) Core '' : FALSE Deprecated: DOMImplementation::hasFeature(): Passing null to parameter #2 ($version) of type string is deprecated in /in/i43s6 on line 19 5.) Core NULL : FALSE Fatal error: Uncaught TypeError: NumberFormatter::format(): Argument #1 ($num) must be of type int|float, array given in /in/i43s6:28 Stack trace: #0 /in/i43s6(28): NumberFormatter->format(Array) #1 /in/i43s6(34): dom_list_feature(Object(DOMDocument), 'Core', Array) #2 {main} thrown in /in/i43s6 on line 28
Process exited with code 255.

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