Skip to content

Instantly share code, notes, and snippets.

View victorcosta12's full-sized avatar

Victor Costa victorcosta12

View GitHub Profile
@victorcosta12
victorcosta12 / gist:1450172
Created December 9, 2011 04:33
Função para pegar ultimos twitters
<?php
function getTweets($usuario, $qtd = 10){
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'http://twitter.com/statuses/user_timeline/' . $usuario . '.json?count=' . $qtd,
CURLOPT_HEADER => false,
CURLOPT_RETURNTRANSFER => true)
);
$request = curl_exec($curl);
curl_close($curl);