Answer the question
In order to leave comments, you need to log in
How can I make the counter reset at 00:00?
Hello everyone, please help with the counter... There is a counter that randomly adds to the number from 1 to 4...
The counter works fine, but how can I make it reset at 00:00 without cron?
The counter itself:
public function actionCounter(){
$counter = 'counter/counter.txt';
$all = file_exists($counter) ? (int) file_get_contents($counter) : 0;
$rand_time = mt_rand(1, 4);
$all = $all + $rand_time;
$test = file_put_contents($counter, $all);
$script_name = basename(__FILE__);
return $all;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question