我开始了这个过程:
$interval=3; //minutes
set_time_limit(0);
while (true)
{
$now=time();
$sql=mysqli_query($con, "insert into tbl_test(name) values('abcd')");
sleep($interval*60-(time()-$now));
//flush();
@ob_flush();
}
我使用共享托管,因此我无法重启Apache。 请帮我找出合适的解决方案