3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getTweets($hash_tag) { $url = 'http://search.twitter.com/search.atom?q='.urlencode($hash_tag) ; echo "<p>Connecting to <strong>$url</strong> ...</p>"; $ch = curl_init($url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE); $xml = curl_exec ($ch); curl_close ($ch); //If you want to see the response from Twitter, uncomment this next part out: echo "<p>Response:</p>"; echo "<pre>".htmlspecialchars($xml)."</pre>"; $affected = 0; $twelement = new SimpleXMLElement($xml); foreach ($twelement->entry as $entry) { $text = trim($entry->title); $author = trim($entry->author->name); $time = strtotime($entry->published); $id = $entry->id; echo "<p>Tweet from ".$author.": <strong>".$text."</strong> <em>Posted ".date('n/j/y g:i a',$time)."</em></p>"; } return true ; } getTweets('#cats'); ?>
Output for git.master, git.master_jit, rfc.property-hooks
<p>Connecting to <strong>http://search.twitter.com/search.atom?q=%23cats</strong> ...</p> Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/1fLWo:6 Stack trace: #0 /in/1fLWo(28): getTweets('#cats') #1 {main} thrown in /in/1fLWo on line 6
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:
47.05 ms | 401 KiB | 8 Q