3v4l.org

run code in 300+ PHP versions simultaneously
<?php $url = 'https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=857622515&mt=8'; //ENTETE DE CURL POUR SCRAPPING DE L'APPSTORE $useragent = "iTunes/9.0.2 (Macintosh; Intel Mac OS X 10.5.8) AppleWebKit/531.21.8"; $header = array("X-Apple-Store-Front: 143442-1"); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_FAILONERROR, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); curl_setopt($ch, CURLOPT_USERAGENT, $useragent); curl_setopt($ch, CURLOPT_COOKIESESSION, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); echo "<pre>".print_r(curl_getinfo($ch),true)."</pre>"; $result = curl_exec($ch); echo "<pre>".print_r(curl_getinfo($ch),true)."</pre>"; echo curl_error($ch); curl_close($ch); echo $result;
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/c5uY6:8 Stack trace: #0 {main} thrown in /in/c5uY6 on line 8
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.27 ms | 401 KiB | 8 Q