萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> 如何離線執行php任務

如何離線執行php任務

本文介紹了如何離線執行php任務,非常實用,有興趣的同學快看看吧

直接上代碼,主要函數

ignore_user_abort(true);

這個函數忽略了終端被關閉(打開的網頁被關閉),後面

getfiles()這函數是執行采集任務的自定義函數,後面又配置了下路徑

打開寫好的頁面,關閉,後面發現任務都能執行完成,有興趣的可以試試。

 代碼如下 復制代碼

<?php

//設置忽略是否關閉終端窗口

ignore_user_abort(true);

ini_set('max_execution_time','0');

//采集頁面函數,看不懂執行百度curl php

functiongetfiles($url,$name){

  $name=$name.".txt";

  $ch= curl_init("$url");

  $fp=fopen("$name","w");

  curl_setopt($ch, CURLOPT_FILE,$fp);

  curl_setopt($ch, CURLOPT_HEADER, 0);

  curl_exec($ch);

  curl_close($ch);

  fclose($fp);

  sleep(5);

  echo'<script>window.close();</script>';

}

//配置需要采集的頁面路徑數組

$urls=array(

  'http://www.cnblogs.com/jianqingwang/p/6373168.html',

  'http://www.cnblogs.com/jianqingwang/p/6148644.html',

  'http://www.61916.com/news_view_2423.html',

  'http://blog.sina.com.cn/s/blog_8e326c350102w1ah.html',

  'http://www.w3school.com.cn/php/func_misc_ignore_user_abort.asp',

  'http://xinwen.eastday.com/a/170219205305597.html',

  'http://society.huanqiu.com/article/2017-02/10162630.html?from=bdwz',

  'http://www.cankaoxiaoxi.com/roll10/bd/20170220/1699670.shtml',

  'http://news.china.com/socialgd/10000169/20170220/30266284.html',

  'http://news.k618.cn/society/201702/t20170220_10368740.html',

  'http://fj.qq.com/a/20170218/029521.htm'

);

//遍歷數組

foreach($urlsas$key=>$val){

  getfiles($val,$key);

}

?>

copyright © 萬盛學電腦網 all rights reserved