Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can you give me a php script who return the firts 3 trending topic of twitter? thanks

share|improve this question

closed as not a real question by Chacha102, deceze, typeoneerror, Mike B, Roger Pate Jun 11 '10 at 14:32

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 4 down vote accepted

I'm not sure you should be asking people to write code for you, but anyway, here you are.

<?php

$request    = file_get_contents( 'http://search.twitter.com/trends/current.json' );
$json       = json_decode( $request, true );
$trends     = $json[ 'trends' ];
$keys       = array_keys( $trends );
$trends     = $trends[ $keys[ 0 ] ];
$trends     = array(

     $trends[ 0 ][ 'name' ],
     $trends[ 1 ][ 'name' ],
     $trends[ 2 ][ 'name' ]

);
share|improve this answer
2  
If you want an associative array out of json_decode, you can make the second paramater true instead of getting the object and then casting it. – Charles Jun 11 '10 at 4:21
+1. Forgot about that parameter :) – Simon Jun 11 '10 at 4:34

Not the answer you're looking for? Browse other questions tagged or ask your own question.