Home Backend Development PHP Tutorial PHP计划任务、定时执行任务的实现代码_PHP

PHP计划任务、定时执行任务的实现代码_PHP

Jun 01, 2016 pm 12:16 PM
Timed execution Scheduled Tasks

不知道能程序的性能会不会影响很大!
复制代码 代码如下:
ignore_user_abort();//关掉浏览器,PHP脚本也可以继续执行.
set_time_limit(0);// 通过set_time_limit(0)可以让程序无限制的执行下去
$interval=60*30;// 每隔半小时运行
do{
//这里是你要执行的代码
sleep($interval);// 等待5分钟
}while(true);

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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

Task scheduling through Laravel: executing repetitive tasks regularly Task scheduling through Laravel: executing repetitive tasks regularly Aug 13, 2023 pm 05:05 PM

Task scheduling through Laravel: scheduled execution of repetitive tasks Introduction: When developing web applications, there are some repetitive tasks that need to be executed regularly. For example, send emails, generate reports, data backup, etc. Performing these tasks manually every once in a while is obviously inefficient and easy to miss. Laravel provides a powerful task scheduling function that can help us automatically execute these tasks on a regular basis and improve development efficiency. This article will introduce how to schedule tasks through Laravel to achieve scheduled execution of repetitive tasks.

How to use setInterval function to execute code regularly? How to use setInterval function to execute code regularly? Nov 18, 2023 pm 05:00 PM

How to use setInterval function to execute code regularly? In JavaScript, the setInterval function is a very useful function, which can execute a piece of code regularly. Through the setInterval function, we can repeatedly execute specified code within a specific time interval. This article will introduce in detail how to use the setInterval function and provide specific code examples. 1. The basic syntax of the setInterval function is as follows: setInterv

What is the method to set the scheduled power on and off of Windows 7? What is the method to set the scheduled power on and off of Windows 7? Jul 10, 2023 pm 09:49 PM

Most users don’t know what the scheduled power on and off setting method for windows 7 is. Specifically, win7 can be set to automatically shut down, but users don’t know how to set it up. In fact, it can be set by entering a simple code, and you need to use cmd to set it up. The following is an introduction to the actual Windows 7 timer power on and off setting method. Users can refer to it and set it up, which is very simple. What is the method to set the timer on and off of Windows 7? 1. Set automatic shutdown. In fact, it can only be done from within the capabilities of the system itself, i.e. entering the shutdown command in the action box. Open the menu bar and click Action. If not, just press the shortcut key to open it, win+r to open it. 2. For example, if we want to turn off the power after three hours

How to use Systemd and Crontab to execute scripts regularly in Linux systems How to use Systemd and Crontab to execute scripts regularly in Linux systems Sep 26, 2023 pm 02:33 PM

Title: Using Systemd and Crontab to regularly execute scripts in Linux systems Text: In Linux systems, we often need to regularly execute some script tasks, such as backing up data, cleaning logs, etc. This article will introduce how to use Systemd and Crontab to implement the function of regularly executing scripts, and provide specific code examples. 1. Use Systemd to execute scripts regularly. Systemd is an initialization system and service manager under the Linux system. Through

Timed task and planned task technology in PHP Timed task and planned task technology in PHP May 11, 2023 pm 04:13 PM

With the rapid development of the Internet, more and more websites and applications need to perform some scheduled tasks and planned tasks in the background, such as data cleaning, backup, statistical analysis, etc. As a popular web development language, PHP also provides corresponding scheduled task and planned task technology. This article will introduce the scheduled task and planned task technology in PHP in detail. 1. Concept and usage scenarios of scheduled tasks 1.1 Concept Scheduled tasks refer to automatically executing some specified tasks or operations within a specified time point or time interval. 1.2 make

Timed task and planned task management with PHP and mini-programs Timed task and planned task management with PHP and mini-programs Jul 04, 2023 am 10:05 AM

Timing tasks and planned task management of PHP and small programs With the continuous development of Internet technology, many websites and applications need to perform certain tasks regularly, such as data cleaning, data analysis, data synchronization, etc. In PHP and small program development, how to manage scheduled tasks and planned tasks is an important topic. This article will introduce how to use PHP and applets to manage timed tasks and planned tasks, and give corresponding code examples. Scheduled task management in PHP In PHP, we can use Cron to manage scheduled tasks.

How to implement scheduled tasks and scheduled tasks through the Webman framework? How to implement scheduled tasks and scheduled tasks through the Webman framework? Jul 08, 2023 am 11:43 AM

How to implement scheduled tasks and scheduled tasks through the Webman framework? Webman is a lightweight web framework developed based on Go language. It provides a simple way to implement scheduled tasks and planned tasks. This article will introduce how to use the Webman framework to implement timed tasks and scheduled tasks, and provide corresponding code examples. Before using the Webman framework, you need to install Webman first. Webman can be installed with the following command: gogetgithub.com/he

Schedule tasks to specify time points and execute one-time tasks that depend on the atd service Schedule tasks to specify time points and execute one-time tasks that depend on the atd service Mar 11, 2024 am 09:07 AM

The scheduled task is scheduled to execute atat at a specified time point at a time, and the one-time task depends on the atd service. It needs to be started to realize the at task. The at queue is stored in the /var/spool/at directory -V: Display version information -l: List the specified queue Jobs waiting to be run; equivalent to atq-d: delete the specified job; equivalent to atrm-c: view specific job tasks [root@localhost~]#systemctlstartatd[root@localhost~]#systemctlenableatd[root@localhost~]# atnow+1minat>useraddxwzat>#

See all articles