Hacker News new | past | comments | ask | show | jobs | submit login

    $status_url = 'http://twitter.com/statuses/user_timeline.json?screen_name='.$user;
    $timeline = json_decode(file_get_contents($status_url));
    for($i = 0; $i < count($timeline); $i++){
        echo $timeline[$i]->text ."\n";
    }
One line in it then.



The count in the loop slows it down quite a bit:http://tips4php.com/2010/01/best-way-to-traverse-trough-an-a... Foreach is easier to write, and faster to run :)




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: