Home Backend Development PHP Tutorial Detailed explanation of how to implement PHP scheduled cron tasks in Linux_PHP Tutorial

Detailed explanation of how to implement PHP scheduled cron tasks in Linux_PHP Tutorial

Jul 13, 2016 pm 05:18 PM
cron linux php Task timing accomplish implement solution Detailed explanation

There is no solution for PHP itself to perform scheduled tasks, but it is done with the help of the sleep function. This method requires some configuration in advance, such as the implementation process:

Copy code The code is as follows:

ignore_user_abort();//Close the browser, and the PHP script can continue to execute.
set_time_limit(0); // Through set_time_limit(0), the program can be executed without limit
$interval=60*30;// Run every half hour
do{
// Here is the code you want to execute
sleep($interval);// Wait for 5 minutes
}while(true);

However, I have some concerns about performance issues with this method, but it is also a temporary method.

The method I recommend is to use scripts to implement it, using the scheduled task mechanism of the OS itself, and using bat scripts on Windows. But I haven't tried it on windows. Then I will talk about the implementation in Linux.

If your web server is based on Linux, you can use cron job under Linux to complete it. Taking RedHat5 as an example, we only need logic code to be executed regularly in advance. For example demo.php

Copy code The code is as follows:

echo "Hello";
?>

Then encapsulate php with a shell script and call demo.php in the shell script. The demo.sh code is as follows:

Copy code The code is as follows:

#! /bin/bash
#if you php install to /usr/local/php/
/usr/local/php/bin/php /home/xx-user/demo.php

After finishing writing the shell script, make sure it has sufficient permissions for this line, for example:/bin/chmod u+x demo.sh.

Then configure cronjob on linux. cronjob is installed by default on linux. If your task needs to be executed by hour, day, week, or month, then you can directly copy your demo.sh script to

/etc/cron.hourly, /etc/cron.daily, /etc/cron.weekly, /etc/cron.monthly are ok, so you can complete your task. If you want to remove the scheduled task at a certain point in time, just move it to other places from the above folders or delete it directly.

If your script has a special execution time, such as every Tuesday, or the 15th of every month. Then you need to configure your own cron job.

For the special configuration of cron, please refer to: http://www.pantz.org/software/cron/croninfo.html

Here I will run this script every 2 minutes between 12:00 am and 14:00 pm every day, then the configuration is as follows (for example, demo.sh is located in the /tmp directory):

First execute crontab -e in the Linux command line, and then enter the rules into it:

Copy code The code is as follows:

*/2 12-14 * * * /tmp/demo.sh

After completing the input, press the "Esc" key on the keyboard, then enter: wq, and the editing page will exit. Then you can use crontab -l to view the cron job you just edited.

At this point the special cron is completed. For example, if you just used the demo account under Linux to complete the above steps, then there is another simple way to directly edit the /var/spool/cron/demo file, you can directly

Modify your cron job. For example: vi /var/spool/cron/demo

Using the OS to manage your scheduled tasks is very fast, and you don’t have to worry about performance issues unless there are some problems with your script itself. This method is easy to maintain, you can modify the scheduled execution plan, and you can also easily remove and add other scheduled tasks.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/621667.htmlTechArticleThere is no solution for PHP itself to perform scheduled tasks, but it is done with the help of the sleep function. This method requires some configuration in advance, such as the implementation process: Copy code Code...
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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 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)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1252
24
Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

The Continued Use of PHP: Reasons for Its Endurance The Continued Use of PHP: Reasons for Its Endurance Apr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

Docker on Linux: Containerization for Linux Systems Docker on Linux: Containerization for Linux Systems Apr 22, 2025 am 12:03 AM

Docker is important on Linux because Linux is its native platform that provides rich tools and community support. 1. Install Docker: Use sudoapt-getupdate and sudoapt-getinstalldocker-cedocker-ce-clicotainerd.io. 2. Create and manage containers: Use dockerrun commands, such as dockerrun-d--namemynginx-p80:80nginx. 3. Write Dockerfile: Optimize the image size and use multi-stage construction. 4. Optimization and debugging: Use dockerlogs and dockerex

The Compatibility of IIS and PHP: A Deep Dive The Compatibility of IIS and PHP: A Deep Dive Apr 22, 2025 am 12:01 AM

IIS and PHP are compatible and are implemented through FastCGI. 1.IIS forwards the .php file request to the FastCGI module through the configuration file. 2. The FastCGI module starts the PHP process to process requests to improve performance and stability. 3. In actual applications, you need to pay attention to configuration details, error debugging and performance optimization.

What happens if session_start() is called multiple times? What happens if session_start() is called multiple times? Apr 25, 2025 am 12:06 AM

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

How to understand DMA operations in C? How to understand DMA operations in C? Apr 28, 2025 pm 10:09 PM

DMA in C refers to DirectMemoryAccess, a direct memory access technology, allowing hardware devices to directly transmit data to memory without CPU intervention. 1) DMA operation is highly dependent on hardware devices and drivers, and the implementation method varies from system to system. 2) Direct access to memory may bring security risks, and the correctness and security of the code must be ensured. 3) DMA can improve performance, but improper use may lead to degradation of system performance. Through practice and learning, we can master the skills of using DMA and maximize its effectiveness in scenarios such as high-speed data transmission and real-time signal processing.

Using Laravel: Streamlining Web Development with PHP Using Laravel: Streamlining Web Development with PHP Apr 19, 2025 am 12:18 AM

Laravel optimizes the web development process including: 1. Use the routing system to manage the URL structure; 2. Use the Blade template engine to simplify view development; 3. Handle time-consuming tasks through queues; 4. Use EloquentORM to simplify database operations; 5. Follow best practices to improve code quality and maintainability.

How to handle high DPI display in C? How to handle high DPI display in C? Apr 28, 2025 pm 09:57 PM

Handling high DPI display in C can be achieved through the following steps: 1) Understand DPI and scaling, use the operating system API to obtain DPI information and adjust the graphics output; 2) Handle cross-platform compatibility, use cross-platform graphics libraries such as SDL or Qt; 3) Perform performance optimization, improve performance through cache, hardware acceleration, and dynamic adjustment of the details level; 4) Solve common problems, such as blurred text and interface elements are too small, and solve by correctly applying DPI scaling.

See all articles