3v4l.org

run code in 300+ PHP versions simultaneously
<?php $doc = new DOMDocument; // We don't want to bother with white spaces $doc->preserveWhiteSpace = false; $doc->strictErrorChecking = false; $doc->recover = true; $doc->loadHTMLFile('https://www.bloomberg.com/quote/USDJPY:CUR'); $xpath = new DOMXPath($doc); $query = "//meta[@itemprop='priceChangePercent']"; $entries = $xpath->query($query); foreach ($entries as $entry) { $result = trim($entry->getAttribute('content')); $ret_ = explode(' ', $result); //make sure every element in the array don't start or end with blank foreach ($ret_ as $key=>$val){ $ret_[$key]=trim($val); } //delete the empty element and the element is blank "\n" "\r" "\t" //I modify this line $ret_ = array_values(array_filter($ret_,deleteBlankInArray)); //echo the last element echo $ret_[0]; } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: DOMDocument::loadHTMLFile(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/HRh4h on line 11 Warning: DOMDocument::loadHTMLFile(): I/O warning : failed to load external entity "https://www.bloomberg.com/quote/USDJPY:CUR" in /in/HRh4h on line 11

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:
52.55 ms | 401 KiB | 8 Q