獲取函數一次執行中回調次數

    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
相關文章
相關標籤/搜索