3v4l.org

run code in 300+ PHP versions simultaneously
<?php var_dump( unserialize(gzuncompress(httpGet("http://updates.facebot.org/openupdater/plugversions.php?pname=FV_Farmer"))) ); function httpGet($url = '') { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 0); //curl_setopt($ch, CURL_HTTP_VERSION_1_1, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 45); curl_setopt($ch, CURLOPT_AUTOREFERER, true); //curl_setopt($ch, CURLOPT_MAXREDIRS, 10); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36'); curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept-Language: en-US', 'Pragma: no-cache')); if (isset($_SESSION['setGlobal']['use_proxy'])) { curl_setopt($ch, CURLOPT_PROXY, trim($_SESSION['setGlobal']['proxy_ip'] . ':' . $_SESSION['setGlobal']['proxy_port'])); curl_setopt($ch, CURLOPT_PROXYPORT, intval($_SESSION['setGlobal']['proxy_port'])); if (!empty($_SESSION['setGlobal']['proxy_user']) && !empty($_SESSION['setGlobal']['proxy_pass'])) { // is set proxy user and password $authorization = trim($_SESSION['setGlobal']['proxy_user']) . ':' . trim($_SESSION['setGlobal']['proxy_pass']); curl_setopt($ch, CURLOPT_PROXYUSERPWD, $authorization); curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_BASIC); } } $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ($httpCode == 404) { return; } if ($httpCode == 500) { return; } if (empty($response)) { return; } curl_close($ch); return $response; }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/Wl4J9:9 Stack trace: #0 /in/Wl4J9(4): httpGet('http://updates....') #1 {main} thrown in /in/Wl4J9 on line 9
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:
41.37 ms | 401 KiB | 8 Q