查找字符串出现次数的方法
substr_count(string,substring,[start],[length])
函数延迟代码执行若干秒,若成功,返回 0,否则返回 false。
sleep(seconds)
利用console调试输出
function console($str){
echo("<script>console.log('".$str."');</script>");
}
自动执行
set_time_limit(0);//程序执行时间无限制
$sleep_time =10;//多长时间执行一次
while(条件){
file_put_contents("log.txt",$msg,FILE_APPEND);//记录日志
sleep($sleep_time);//等待时间,进行下一次操作。
}
exit();