首页 > PHP
静默执行程序
来源:TP课堂 时间:2021-12-12 点击:383

url关掉、ajax都可以

 public function pdf_sleep(){
        ignore_user_abort(true);
        set_time_limit(0);
        echo 'Testing connection handling in PHP';
        while(1)
        {
            // Did the connection fail?
            if(connection_status() != CONNECTION_NORMAL)
            {
                break;
            }
            Db::name('flink')->insert(['name'=>'a']);
            // Sleep for 10 seconds
            sleep(10);
        }
    }