3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getFBLikes($page) { $pageinfo = ""; #$pageinfo = trim(file_get_contents("http://graph.facebook.com/".$page)); // CURL initialisieren $ch = curl_init(); if( $ch ) { // HTTP-URL setzen curl_setopt($ch, CURLOPT_URL, "https://graph.facebook.com/".$page); // CURL sagen, wir wollen den Inhalt der Seite haben curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Einen User-Agent vorgaukeln curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0'); // Request ausführen $pageinfo = curl_exec($ch); // if( $pageinfo === false ) { die ( curl_error( $ch ) ); } // CURL beenden curl_close( $ch ); } if( $pageinfo === false ) { $pageinfo = trim(file_get_contents("http://graph.facebook.com/".$page)); } // print_r($pageinfo); $pageinfo = json_decode($pageinfo); return $pageinfo->likes; } echo getFBLikes("werpasstauf");
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/LfWmE:8 Stack trace: #0 /in/LfWmE(35): getFBLikes('werpasstauf') #1 {main} thrown in /in/LfWmE 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:
36.65 ms | 401 KiB | 8 Q