This article mainly introduces the solution to the PHP scheduled sending service. Friends who need it can refer to it
##1. Timed sending task analysis
When developing mobile APP or WeChat, there are often scenarios where messages need to be pushed regularly.Scheduled sending is divided into two types:
One is to fix the time during development, and the background manager can only choose the messages to be pushed;The other is that the background administrator can freely choose the time and message to push;
2. Solution
PHP itself is Scheduled sending is not supported because PHP is a scripting language. In most cases, the browser is closed and PHP will not execute. Most of the time it relies on some little external thing.1. Fixed time
Most server systems are windows or linux. Linux: Use CronTab to execute php regularly First, enter the command line mode. As a server, Linux generally enters the command line mode by default. Of course, our management server also generally connects to the server remotely through tools such as putty. For convenience, we log in as the root user. Type in the command line:crontab -eAfter that, a file will be opened, and it is in a non-editing state. It is the editing interface of vi. By pressing i on the keyboard , enter the editing mode, and you can edit the content. Each line in this file is a scheduled task. When we create a new line, we create a new scheduled task (of course it means that this line is written in a certain format). Let's take an example now and add a line with the following content:
00 * * * * lynx -dump https://www.yourdomain.com/script.phpWhat does this mean? In fact, the above line consists of two parts, the first part is the time, and the latter part is the operation content. For example, the above one,
00 * * * *, means that when the minutes of the current time are 00, the scheduled task will be executed. The time part consists of 5 time parameters, which are: n minutes, for example */8 means every 8 minutes, and the following is also analogous
'' wealth Numbers ’ means every 8 minutes | The following is also the same analogy
」 iety The column represents the month 1~12 credulous , The fifth column identifies the day of the week 0~6 (0 represents Sunday]
ccogate us us in the identification number of the week 0~6 (0 represents Sunday)
The last part of the entire sentence is the specific content of the operation.
lynx -dump https://www.yourdomain.com/script.php
It means accessing this url through lynx. We mainly use lynx, curl, and wget to achieve remote access to URLs. If we want to improve efficiency, directly using PHP to execute local PHP files is the best choice, for example:
00 */2 * * * /usr/local/bin/php /home/www/script.php
This statement can execute script.php through the Linux internal php environment at 0 minutes every 2 hours. Note that this is not accessed through the url, but executed through the server environment. It is executed directly, because it bypasses the server environment, so the efficiency is of course much higher.
Okay, a few required scheduled tasks have been added. Click the Esc key on the keyboard, enter ":wq" and press Enter. This saves the set scheduled task, and you can also see a prompt on the screen that a new scheduled task has been created. The next step is to write your script.php properly.
Windows:
There is a similar cmd and bat file on Windows and Linux. The bat file is similar to a shell file. Executing this bat file is equivalent to executing the commands inside in sequence (of course, you can also Programming is implemented through logic), so we can use the bat command file to implement PHP scheduled tasks on the windows server. In fact, the principle of scheduled tasks on Windows is the same as that on Linux, but the methods and approaches are different. Okay, let’s get started.
cessoverly\/
#D:\php\php.exe -q D:\website\test.php
What this sentence means is that using php.exe to execute the php file test.php is the same as the contab above, bypassing the server environment, and the execution efficiency is also relatively high high. After writing, click Save and close the editor.
The next step is to set up a scheduled task to run cron.bat. Open in sequence: "Start -> Control Panel -> Task Schedule -> Add Task Schedule", set the time and password of the scheduled task in the opened interface, and mount cron.bat by selecting it. OK, in this way, a scheduled task is created. Right-click on the scheduled task and run. The scheduled task will start to be executed. When the time is up, cron.bat will be run for processing, and cron.bat will execute php.
2. Freely choose the time
The commonly used blogging system wordpress has a wp-corn file to perform scheduled posting of blogs. The blogger uses wp-corn as the prototype to write a file.
wp-corn is a strategy that consumes server resources very much. When everyone visits the blog, the wp-corn file will be called (read the current server time and determine whether to send it). The disadvantage is that it cannot be sent in time when the number of visitors is relatively small. If there are too many visitors, the server performance will be reduced.
When the blogger was working on the project, the company provided a windows server. The method used is to open a page on the server and automatically refresh it every minute (simple js script, no code is provided).
The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
PHP’s predefined interface analysis
# #
The above is the detailed content of How to solve the problem of PHP scheduled sending service. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

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

SublimeText3 English version
Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
