public function tt($times = 1){ $rand = mt_rand(1,5); echo $rand . '<br/>'; if ($rand != '5'){ $times++; $this->tt($times); } else { echo '-----------' . '<br/>'; echo $times; exit; } } public function sss() { $this->tt(); exit; }331145-----------6