3v4l.org

run code in 300+ PHP versions simultaneously
<?php // create a new cURL resource $ch = curl_init(); // set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, "http://www.onet.pl/"); curl_setopt($ch, CURLOPT_HEADER, 0); // grab URL and pass it to the browser $r = curl_exec($ch); print_r($r); // close cURL resource, and free up system resources curl_close($ch);

preferences:
70.46 ms | 402 KiB | 5 Q