3v4l.org

run code in 300+ PHP versions simultaneously
<?php function name() { $curl = curl_init(); // Set some options - we are passing in a useragent too here curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_URL => 'https://graph.facebook.com/nike', CURLOPT_USERAGENT => 'write_code_online' )); // Send the request & save response to $resp $data = curl_exec($curl); // Close request to clear up some resources curl_close($curl); return json_parse($data)->likes; } echo name();

preferences:
42.38 ms | 402 KiB | 5 Q