なんとなく、TwitterのSearch API をPHP5にて試してみました。 かなりお手軽なんですけれど、こんな感じでした。 ソース 保存はutf8で json_decode()は、PHP 5.2.0 以上で <?php $apiUrl = 'http://search.twitter.com/search.json'; $keyword = '#utamaru'; $rpp = 100; $url = $apiUrl . '?rpp=' . $rpp . '&q=' . urlencode($keyword); $results = file_get_contents($url); $tweets = json_decode($results, true); //print $tweets['next_page']; print '<dl>'; foreach ($tweets['r