iLeichun

当前位置: 首页 > PHP

PHP自动执行任务的网站建设代码

分类:PHP   来源:网络   时间:2010-09-10 19:39:12

PHP自动执行任务,关掉页面或浏览器也会自动定时执行:
<?php
ignore_user_abort(); //即使Client断开(如关掉浏览器),PHP脚本也可以继续执行.
set_time_limit(0); // 执行时间为无限制,php默认的执行时间是30秒,通过set_time_limit(0)可以让程序无限制的执行下去
$interval=60*5; // 每隔5分钟运行
do{
$fp = fopen(¹test.txt¹,¹a¹);
fwrite($fp,¹test¹);
fclose($fp);
sleep($interval); // 按设置的时间等待5分钟循环执行
}while(true);
?>
首先运行该程序,然后关闭该页面,程序仍然运行中,test便会每隔30秒的写入到text3.txt文件。

 

 

隔时生成首页的PHP代码:
<?php
set_time_limit(0);
$baseCmsUrl = "http://www.studstu.com";//你网站的根网址,结束不要加 /
$dmPageName = "index.php";//动态主页的名称
$stPageName = "index.html";//生成静态主页的名称
$mkTime = 3600;//你希望多长时间更新一次,单位是秒
//下面是执行的代码
$tureStFile = dirname(__FILE__).¹/¹.$stPageName;
$ftime = @filemtime($tureStFile);
if(!file_exists($tureStFile) || ($ftime < time()-$mkTime))
{
        $body = file_get_contents($baseCmsUrl.¹/¹.$dmPageName);
        $fp = fopen($tureStFile, ¹w¹);
        fwrite($fp, $body);
        fclose($fp);
}
?>
将上面代码保存为task.php
在经常访问的页面调用:<script language=¹Javascript¹ src=¹task.php¹></script>

在某个固定的时间执行的PHP代码:
<?php
//计划执行时间
if($job==¹cron¹){
check_method();
//查询数据库的下一个时间是否小于现在的时间
if($maxrecord[¹deltemptime¹]<$nowtime[¹timestamp¹]){
    $crondb = array();
    //day为0为每日 week周 minute时间断 hour什么时侯开始
    $rt[¹cron¹] = array(¹day¹=>¹0¹,¹week¹=>$config[¹cron_week¹],¹m¹=>$config[¹cron_minute¹],¹hour¹=>$config[¹cron_hour¹]);
    $crondb[] = $rt;
}
foreach ($crondb AS $key => $cron_val){
    //设置了允许分钟段
    if (!empty($config[¹cron_minute¹])){
      $m = explode(¹ ¹, $config[¹cron_minute¹]);
     
      $m_now = intval(local_date(¹i¹,$nowtime[¹timestamp¹]));
      if (!in_array($m_now, $m)) {//不包含此分钟的跳出
        continue;
      }
    }
   /*执行任务*/
                               /*********此处是你写的任务***********************/
    $next_time = get_next_time($cron_val[¹cron¹]);
    $DB->query("UPDATE `maxrec` SET `deltemptime`={$next_time}");
}
exit;
}
?>

更多