Table of Contents
Techniques for regularly executing PHP on windows, Windowsphp tips
Home Backend Development PHP Tutorial Windows scheduled execution of PHP skills, windowsphp skills_PHP tutorial

Windows scheduled execution of PHP skills, windowsphp skills_PHP tutorial

Jul 12, 2016 am 08:54 AM
virtual host

Techniques for regularly executing PHP on windows, Windowsphp tips

I believe that many readers (PHP enthusiasts) often complain during the process of work and study: how to do it in WIN How to let PHP automatically send emails at regular intervals? ? How to make MYSQL realize automatic backup without worries? ? Of course it can be done entirely manually, but the operation seems a bit too cumbersome! Don't worry, this problem can be easily solved by using the system's task scheduler (called a scheduled task in Windows 98). This feature is often overlooked or never thought of by many users :).

The so-called task plan is for the computer to automatically call the application program set by the user in advance, thereby simplifying the user's operation. Using the task scheduler of Windows 2000 (equivalent to the cron program under *NIX, which will not be described in detail here), we can schedule any script, program or document to run at the most appropriate time to meet our needs. The following takes Windows 2000 as an example.

Specifically, if we need to use the task scheduler to run automatically, we should perform the following steps:

1. Click the "Start" button, and then select "Programs" → "Accessories" → "System Tools" → "Task Schedule" (or "Settings" → "Control Panel" → "Task Schedule") to start the Windows 2000 task schedule management program.

2. Double-click the "Add Task Plan" icon in the "Task Plan" window to start the system's "Task Plan Wizard", then click the "Next" button and select the desired program from the given program list. Automatically run the application and click the "Next" button.
Set an appropriate task schedule name and select the time frequency to automatically perform this task (such as daily, weekly, monthly, one-time, every time you start the computer, every time you log in, etc.), then click "Next" " button.
At this time, the system will ask the user to set the specific time for the program to run, such as what day, what time, what time period it can run, etc. We only need to set it according to our own needs.

4. Next, the system will ask the user to set an appropriate username and password 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 Windows 2000 task scheduler. After that, it will automatically "remember" the task once the system time and If the relevant conditions match the plan set by the user, it will automatically call the application specified by the user, which is very convenient (every time you start Windows 2000, the task scheduler will automatically start and run in the background to ensure that the user's plan can be scheduled on time. implement).

Now let's test whether the task we just created is successful. Right-click the "php" program icon (as shown in Figure 6) and select "Run" in the pop-up menu. Under normal circumstances, the program icon can start normally as long as it is activated in this way. If the operation fails, you can check whether the user and password are set correctly, and confirm whether the "Task Scheduler" service has been started. I turned it off in order to save system resources, which caused the operation to fail, which cost me a long time to find. In addition, you can also check the "system log" to see what caused the operation to fail.

Okay, after talking about so many tasks planning applications, let’s get to the point. Two examples will be introduced below:

1. Let PHP run regularly!
1. 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);
?>
Open text input: D:php4php. exe -q D:php4test.php
Save in .bat format.
D:php4php.exe is the php installation path, and D:php4test.php is the path of the program to be run regularly.

2. Add a task plan, select the .bat file

3. Set the time to run every 1 minute, and then run the task.

4. Now let’s see if the content of the d:php4test.txt file was successful. If the content is as shown below, congratulations on your success.

2016-03-03 11:08:01 Let PHP run regularly!
2016-03-03 11:09:02 Let PHP run regularly!
2016-03-03 11:10:01 Let PHP run regularly!
2016-03-03 11:11:02 Let PHP run regularly!

2. Make automatic backup possible for MYSQL!
1. Edit the following code and save it as backup.php. If you want to compress it, you can copy a 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. http://www.dareng.com
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:

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1118330.htmlTechArticleTips for windows to execute PHP regularly, windowsphp techniques for windows to execute PHP regularly. I believe many readers (PHP enthusiasts) are working , I often complain during the learning process: How to make PHP automatically schedule in WIN...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to set the speed limit of the virtual host through the Pagoda panel How to set the speed limit of the virtual host through the Pagoda panel Jun 21, 2023 am 11:17 AM

Pagoda Panel is a very excellent server management panel under Linux system. It has powerful functions and friendly interface, which can help users manage servers easily. In the process of using the Pagoda Panel, it is sometimes necessary to limit the speed of the virtual host to ensure the stability and fluency of the server. This article will introduce how to set the speed limit of the virtual host through the Pagoda panel to achieve a good user experience. 1. Overview of Speed ​​Limit Speed ​​limit refers to limiting the host bandwidth and ensuring the normal operation of the server by controlling the host traffic. exist

Detailed explanation of the virtual host and domain name binding functions of the Gin framework Detailed explanation of the virtual host and domain name binding functions of the Gin framework Jun 22, 2023 am 09:10 AM

The Gin framework is a lightweight web framework that provides the basic functionality needed to quickly build web applications. The Gin framework is flexible, efficient, and scalable, so it is widely used in the Internet field. Among them, the virtual host and domain name binding functions of the Gin framework are important features that other web frameworks do not have. This article will introduce this function in detail. 1. What is a virtual host? A virtual host creates multiple independent and mutually isolated virtual hosts on a physical host. Each virtual host has its own unique

What are the free php virtual hosts abroad? What are the free php virtual hosts abroad? Oct 16, 2023 am 09:57 AM

Foreign free php virtual hosts include DreamHost, Bluehost, Hostinger, 000Webhost, FreeHostia, Zymic, ByetHost and SiteGround.

How PHP connects to Tencent Cloud Server ECS to implement cloud virtual host deployment How PHP connects to Tencent Cloud Server ECS to implement cloud virtual host deployment Jul 07, 2023 am 10:07 AM

How PHP connects to Tencent Cloud Server ECS to implement cloud virtual host deployment Introduction: With the rapid development of cloud computing, more and more enterprises and developers choose to deploy applications to cloud servers to obtain better elasticity and security. and scalability. This article will introduce how to use PHP to connect with Tencent Cloud Server ECS (Elastic Compute Service) to implement cloud virtual host deployment. Step 1: Create a Tencent Cloud Server ECS instance. First, we need to

How to use Pagoda Panel for virtual host security protection How to use Pagoda Panel for virtual host security protection Jun 21, 2023 pm 05:37 PM

In the Internet age, web hosting is a very popular service that allows users to own their own website and manage it easily. However, when using virtual hosts, security issues must also attract our attention. In response to this situation, Pagoda Panel provides a good solution that can help us better protect the security of the virtual host. This article will introduce how to use the Pagoda panel to protect the security of virtual hosts. 1. Set the login password and port. Before using the Pagoda panel, the first step is to set a secure login password. default

How Nginx implements domain name-based virtual host configuration How Nginx implements domain name-based virtual host configuration Nov 08, 2023 pm 08:05 PM

How Nginx implements domain name-based virtual host configuration requires specific code examples. Nginx is a high-performance HTTP and reverse proxy server that provides flexible configuration options to implement domain name-based virtual host configuration. In this article, we will introduce in detail how to configure Nginx to implement domain name-based virtual hosting and provide specific code examples. First, we need to add the virtual host configuration block to the Nginx configuration file. On Ubuntu systems, the default configuration file path is /et

Nginx virtual host optimization configuration to improve website performance and user experience Nginx virtual host optimization configuration to improve website performance and user experience Jul 04, 2023 pm 05:55 PM

Nginx virtual host optimization configuration to improve website performance and user experience Introduction: Nowadays, with the continuous development of the Internet, the number of visits to the website is also increasing. As the entrance to the website, the optimized configuration of Nginx plays a crucial role in improving website performance and user experience. This article will introduce some methods for optimizing the configuration of Nginx virtual hosts, along with code examples so that you can better understand and apply them. 1. Configuration of virtual host Virtual host is an important concept in Nginx. Through the configuration of virtual host, we can

How to use Nginx to implement virtual host configuration based on domain name and path How to use Nginx to implement virtual host configuration based on domain name and path Aug 02, 2023 pm 01:14 PM

How to use Nginx to implement virtual host configuration based on domain name and path Introduction: In network application development, it is often necessary to configure multiple virtual hosts to provide different services. Nginx is a high-performance HTTP and reverse proxy server. By using Nginx, we can easily implement virtual host configuration based on domain name and path. This article will introduce how to use Nginx to implement such a configuration and give corresponding code examples. 1. The virtual host based on the domain name is configured in the Nginx configuration file, using

See all articles