2010-09-01

Últimos tweets de un usuario mediante PHP

La siguiente función permite mostrar los últimos tweets de un usuario. Tan sólo debemos pasarle como parámetro el nombre de usuario de la cuenta y el número de tweets a mostrar.
  1. function my_twitter($usuario,$tweets) {  
  2.     $feed = "http://search.twitter.com/search.atom?q=from:" . $usuario . "&rpp=" . $tweets;  
  3.     $xml = simplexml_load_file($feed);  
  4.     foreach($xml->children() as $child) {  
  5.         foreach ($child as $value) {  
  6.             if($value->getName() == "content") {  
  7.                 $content = $value . "";  
  8.                 echo '<p class="twit">'.$content.'</p>';  
  9.             }     
  10.         }  
  11.     }     
  12. }  
Por ejemplo
  1. my_twitter("webintenta",5);  
mostraría los ultimos 5 tweets del usuario webintenta.

No hay comentarios: