Просмотр поста

.
dakilla

Fublin, можно попробовать и без крона

if(is_file(file.txt)){
 $file = unserialize(file_get_contents('file.txt'));
}else{
 $file = array(time(), 0);
 file_put_contents('file.txt', serialize($file));
}

if(time() > $file[0]){
 $count = floor((time() - $file[0]) / 600);
 if($count > 0){
  fof($i = 0; $i < $count; $i++){
   $file[1] += rand(2, 7);
  }
  file_put_contents('file.txt', serialize($file));
 }
}
echo $file[1];