3v4l.org

run code in 300+ PHP versions simultaneously
<?php // create curl resource $ch = curl_init(); // set url curl_setopt($ch, CURLOPT_URL, "http://www.1800doorbell.com/doorbells/"); //return the transfer as a string curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // $output contains the output string $output = curl_exec($ch); // close curl resource to free up system resources curl_close($ch); var_dump($output);

preferences:
53.6 ms | 402 KiB | 5 Q