Bir zaman dosyaları oluşturma (saatlik) temel

2 Cevap php


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 :)

2 Cevap

Bu bir dosyaya eklemek veya oluşturmak olacak ya - Sen fopen 'ekleme' modunu istiyorum.

if(isset($data['text'])/*more conditions here*/) {
    $fp = fopen("/tmp/" . date("YmdH") . ".txt", "a");
    fwrite ($status,$fp);
    fclose($fp);
}

Phirehose googlecode wiki Gönderen:

As of Phirehose version 0.2.2 there is an example of a simple "ghetto queue" included in the tarball (see file: ghetto-queue-collect.php and ghetto-queue-consume.php) that shows how statuses could be easily collected on to the filesystem for processing and then picked up by a separate process (consume).

This is a complete working sample of doing what you want to do. The rotation time interval is configurable too. Additionally there's another script to consume and process the written files too. Now if only I could find a way to stop the whole sript, my log keeps filling up (the script continues execution) even if I close the browser tab :P