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

.
BoGdAn
I'm the Cult of Personality...

както так

function count($name="index") {
$file = $rootpath.'counters/'.$name.'.dat'; 
$int = intval(file_get_contents($file));
if (!is_file($file) || filemtime($file) < (time() - 24 * 3600))
file_put_contents($file, ($int + rand(5, 10)));
return $int;
}