I experimenting with twitter streaming API,
I use Phirehose to connect to twitter and fetch the data but having problems storing it in files for further processing.
Basically what I want to do is to create a file named
date("YmdH")."."txt"
bağlantının her saat için.
İşte benim kod şu anda (dosyaların saatlik değişikliği işleme değil) gibi görünüyor nasıl
public function enqueueStatus($status)
$data = json_decode($status,true);
if(isset($data['text'])/*more conditions here*/) {
$fp = fopen("/tmp/$time.txt");
fwirte ($status,$fp);
fclose($fp);
}
Yardım her zaman olduğu gibi çok takdir ediyor :)