TwitterのAPIでストリーミングAPIというものがリリースされていたので、 PHPでどれだけ簡単にいけるのか実装してみました。 今回はTwitterのアカウントを持っていれば誰でも利用できる、 けど一部のデータしか取得できない「spritzer」APIを利用しました。 Streaming API Documentation ※json_decode()を利用しているのでPHP5.2.0以上対象になります。 <?php $user = 'username'; $password = 'password'; $stream = fopen("http://{$user}:{$password}@stream.twitter.com/spritzer.json", "r"); while ($json = fgets($stream )) { $twitter= json_decode($