PHP programs run automatically and tasks are scheduled in windows. If you want the PHP program to run automatically in windows, you must use the windows scheduled task. next I will introduce the implementation method to you. Specifically, if you want to enable the PHP program to run automatically in windows, you must use the windows scheduled task. Next, I will introduce the implementation method to you.
Specifically, if you need to use the Task Scheduler to run automatically, perform the following steps:
1. click Start, select "program"> "attachment"> "system tools"> "task Plan" (or "set"> "control panel"> "task Plan "), start the task scheduler management program for Windows 2000.
2. in the "Task Scheduler" window, double-click the "Add Task Scheduler" icon to start the "Task Scheduler wizard" of the system, and then click "next, select the application to be automatically run in the program list, and click "next.
3. set the appropriate task plan name and select the time frequency for automatic execution of the task (such as daily, weekly, monthly, one-time, every start of the computer, and every login time ), click "next. At this time, the system will require the user to set the specific time for the program to run, such as the number, the number of minutes, and the time period to run. we only need to set the time according to our own needs.
4. the system will ask the user to set the appropriate user name and password (as shown in figure 5) so that the system can run automatically in the future.
5. finally, we only need to click the "finish" button to add the corresponding task to the job scheduler in Windows 2000. then it will automatically "remember" this task, once the system time and related conditions are consistent with the user's plan, it will automatically call the user's specified application, very convenient (every time Windows 2000 is started, the task scheduler will be automatically started and run in the background to ensure that your plans can be executed on time ).
Now let's test whether the task we just created is successful. right-click the "php" program icon (6) and choose "run" in the pop-up menu ". In general, the program icon can be started as long as it is activated and running. If the operation fails, check whether the user and password are correctly set. Also, check whether the "Task Scheduler" service has been started. I originally switched it off to save system resources, causing the operation to fail, I have been searching for it for a long time. In addition, you can view in the system log what causes the operation to fail.
Now we have discussed the application of such a multi-task plan. here are two examples:
I. make PHP run regularly
Edit the following code and save it as test. php:
$ Fp = @fopen(”test.txt "," a + ");
Fwrite ($ fp, date ("Y-m-d H: I: s"). "Let PHP run regularly! /N ");
Fclose ($ fp );
?>
Add a Task Scheduler and enter the following command in step (2:
D:/php4/php.exe-q D:/php4/test. php
Set the time to run the task once every one minute. Now let's see if the content in the d:/php4/test.txt file is successful. If the content is as follows, congratulations.
11:08:01 let PHP run on a regular basis!
2007-10-3011: 09: 02 let PHP run on a regular basis!
11:10:01 let PHP run on a regular basis!
11:11:02 let PHP run on a regular basis!
II. enable automatic MYSQL backup
Edit the code below and save it as backup.php. if you want to compress it, you can copy rar.exe:
If ($ argc! = 2 | in_array ($ argv [1], array ('-help ','-? '))){
?>
Backup Ver 0.01, for Win95/Win98/WinNT/Win2000/WinXP on i32
Copyright (C) 2000 ptker All rights reserved.
This is free software, and you are welcome to modify and redistribute it
Under the GPL license
PHP Shell script for the backup MySQL database.
Usage:
Can be database name you wowould like to backup.
With the-help, or -? Options, you can get this help and exit.
} Else {
$ Dbname = $ argv [1];
$ Dump_tool = "c: // mysql // bin // mysqldump ";
$ Rar_tool = "d: // php4 // rar ";
@ Exec ("$ dump_tool-opt-u user-ppassword $ dbname>./$ dbname. SQL ");
@ Exec ("$ rar_tool a-ag_yyyy_mm_dd_hh_mm mongodbname.rar $ dbname. SQL ");
@ Unlink ("$ dbname. SQL ");
Echo "Backup complete !";
}
?>
Add a Task Scheduler and enter the following command in step (2:
D:/php4/php.exe-q D:/php4/backup. php databasename
Set the time to run once a day and then run the task. Finally, an rarfile consisting of the database name and the current time will be generated in the d:/php4/directory. Congratulations! Success!
Of course, there are many backup methods, so readers can do what they like!
The above is the original work. in combination with my own practices, the supplementary instructions are as follows:
If an error occurs:
An error occurred while trying to set the task account information.
The specified error is:
0 × 80070005: Access Denied
You do not have permission to run the requested operation
In the above '"4. the system will ask the user to set the appropriate user name and password so that the system can run automatically in the future". it is best to use the "system" user, the password can be blank.
This system has a very high level of permissions, which is higher than your administrator, so you should never mess up when running the command, but if there is no prompt, it will be executed unconditionally, you can kill the core process with this permission.
2. add a task scheduler and enter the following command in this step:
D:/php4/php.exe-q D:/php100/test. php
The correct format should be
"D:/php4/php.exe"-q "D:/php100/test. php"
That is, the path should be enclosed in double quotation marks.
Bytes. Specifically, if we need...