一、在Crontab中使用PHP执行脚本
就像在Crontab中调用普通的shell脚本一样,具体Crontab用法,使用PHP程序来调用PHP脚本,每一小时执行myscript.php如下:
#crontab -e 00 * * * * /usr/local/bin/php /home/web/abc.php/usr/local/bin/
php为PHP程序的路径.
二、在Crontab中使用URL执行脚本
如果你的PHP脚本可以通过URL触发,你可以使用lynx或curl或wget来配置你的Crontab.
下面的例子是使用Lynx文本浏览器访问URL来每小时执行PHP脚本,Lynx文本浏览器默认使用对话方式打开URL,但是,像下面的,我们在lynx命令行中使用-dump选项来把URL的输出转换来标准输出,代码如下:
00 * * * * lynx -dump http://abc.cn/script.php
下面的例子是使用CURL访问URL来每5分执行PHP脚本,Curl默认在标准输出显示输出,使用”curl -o”选项,你也可以把脚本的输出转储到临时文件,代码如下:
*/5 * * * * /usr/bin/curl -o temp.txt http://abc.cn/script.php
下面的例子是使用WGET访问URL来每10分执行PHP脚本,-q选项表示安静模式,”-O temp.txt”表示输出会发送到临时文件,代码如下:
*/10 * * * * /usr/bin/wget -q -O temp.txt http://abc.cn/script.php
再介绍一下在Windows下php计划任务的实现.
1、新建一个abc.php,代码如下:
<? $fp = fopen("abc.txt", "a+"); fwrite($fp, date("Y-m-d H:i:s") . " 成功了!/n"); fclose($fp);
2、新建abc.bat文件,内容如下:
C:/php/php.exe -q D:/web/abc.php
3、建立WINDOWS计划任务:
开始–>控制面板–>任务计划–>添加任务计划
浏览文件夹选择上面的abc.bat文件
设置时间和密码,登陆WINDOWS的保存即可了.
4、右键点击计划任务 -> “运行”即可
再介绍一个使用php程序来实现的计划任务,这种效率并不高,也不稳定,使用 crontab 才是王道,代码如下:
<?php ignore_user_abort(); // 关掉浏览器,PHP脚本也可以继续执行 set_time_limit(3000); // 设置程序的执行时间为3000秒 // set_time_limit(0); // 设置程序的执行时间为无限长 $interval = 30; // 每隔30秒运行 do { $fp = fopen('abc.txt', 'a'); // 打开 abc.txt fwrite($fp, '你好啊,我来自 http://www.phprm.com'); // 往 abc.txt 写入信息 fclose($fp); // 关闭 abc.txt sleep($interval); // 等待30秒 } while (true);
首先运行该页面,然后关闭该页面,程序仍然运行中,每隔30秒程序会填补信息到abc.txt文件中去.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
