3v4l.org

run code in 300+ PHP versions simultaneously
<?php function downloadFile($filename){ $Url = "http://tvfhls-a.akamaihd.net/1440927936/hls/1536/$filename"; echo "Downloading " . $Url . "\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $Url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); $out = curl_exec($ch); curl_close($ch); $fp = fopen($filename, 'w'); fwrite($fp, $out); fclose($fp); } $filename = "Pitchers_EP5_v3_5mbps.m3u8"; downloadFile($filename); for($i=0; $i < 1698; $i ++ ) { $filename = "Pitchers_EP5_v3_5mbps$i.ts"; downloadFile($filename); } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Downloading http://tvfhls-a.akamaihd.net/1440927936/hls/1536/Pitchers_EP5_v3_5mbps.m3u8 Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/2rK0D:6 Stack trace: #0 /in/2rK0D(20): downloadFile('Pitchers_EP5_v3...') #1 {main} thrown in /in/2rK0D on line 6
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:
67.66 ms | 401 KiB | 8 Q