当前位置:Gxlcms > PHP教程 > TP_PHP及时显示执行数据

TP_PHP及时显示执行数据

时间:2021-07-01 10:21:17 帮助过:18人阅读

控制器方法

    public function autoDemo(){        $this->display();        for ($i=0; $i < 50; $i++) {             sleep(3);            show_msg($i.'*3秒过去了...','green');        }   }

输出函数

function show_msg($msg, $class = ''){    echo "";    flush();    ob_flush();}

模板

		Document            

人气教程排行