/* returns tweetDetails */
function returnTweets()
{
$return = array();
$url = $hashtagSearchUrl = "http://search.twitter.com/search.json?q=%23gencsengeleceksin&include_entities=1&result_type=recent&rpp=50";
foreach(json_decode(file_get_contents($url))->results as $t)
{
$return[] = $t;
}
return $return;
}
/* assigns tweet details to a variable */
$ts = returnTweets();
foreach ($ts as $t)
echo $t->id."<br />";
これは、ツイートIDのリストを出力する必要があります。たとえば:整数の代わりに浮動小数点を返す
190914827918857531
190914827918845655
165456467265456156
は、一般的に、それは働いていますが、一部のサーバーでそれはこのようなものを返すだ:
1.9090219393785E+17
がどのように私はこの問題を解決することができますか?
文字列としてキャストします。 – j08691
ここに私の推測です:http://stackoverflow.com/questions/94591/what-is-the-maximum-value-for-a-int32 – Madbreaks
@ j08691、任意の提案? – Eray