3v4l.org

run code in 300+ PHP versions simultaneously
<?php // your code goes here // Initiate curl $ch = curl_init(); // Disable SSL verification curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Will return the response, if false it print the response curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Set the url curl_setopt($ch, CURLOPT_URL,"http://uptodate.apiary-mock.com/api/companies"); // Execute $result=curl_exec($ch); // Will dump a beauty json :3 var_dump(json_decode($result, true));

preferences:
38.13 ms | 402 KiB | 5 Q