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;
}