Recently, when doing business, I need to implement the function of automatic cancellation after the customer places an order after the order times out and fails to pay. I have just confirmed several methods: The client requests cancellation at the time and checks whether the server has a scheduled time. Orders that need to be canceled are then processed in batches. Create a timer after placing the order. Use redis
or memcache
for delayed processing. Set the expiration time and delete automatically.
Considering the above methods, the first one is eliminated first, because if the customer disables the APP background or network connection, then the request cannot be sent to the server, and the order will always be in an unprocessed state. ; The second method is more commonly used, but it has accuracy issues and the cycle of scheduled tasks needs to be confirmed, so it is temporarily listed as a backup method; the problem with the fourth method is that if the order is deleted, it will be physically deleted and cannot be counted. Unprocessed data (of course, you can store it in a database like mysql for long-term storage when storing redis, and then use method 2 for regular processing).
Finally prepare to use method three.
When confirming the use of method 3, due to the development language PHP used, if you want to implement the timer function, you need to use Swoole
or workerman
. Since Swoole
is an extension framework developed by C
, its performance is definitely better, so I chose Swoole
.
Preparation
To use Swoole, you first need to install the
Swoole
extension on the server. The installation method is similar to installing other extensions. You can refer to this article.After installation, check whether the extension is installed normally, check
phpinfo
orPHP-m
, ifSwoole
appears , it means the installation is successfulSwoole
The official document has timer related documents
Start testing
We create a swoole_test.php
file and a log.txt
file (for testing), swoole_test.php
The code is as follows:
<?php swoole_timer_after(3000, function () { append_log(time()); echo "after 3000ms.\n"; }); function append_log($str) { $dir = 'log.txt'; $fh = fopen($dir, "a"); fwrite($fh, $str."\n"); fclose($fh); }
Then access this PHP file on the web page, the result is as follows:
Then run PHP on the Linux terminal: /usr/local/php7/bin/php /home/app/swoole_test.php
, the results are as follows:
I felt a burst of heart. . .
原来定时器只能在 cli
模式下,那么这个想法怕是要GG了,难道就栽倒这里了吗,难道就没有别的方法了吗?就在我欲哭无泪的时候突然灵光乍现,一个词闪到我的脑海: Python
!
对,我们不能单单靠着 PHP
啊,还有 Python
这种神奇的语言呢,我们知道 Python
的 os
模块里的 os.system
方法是可以执行命令行的,那么不就可以实现在 cli
模式下运行刚才的 swoole_test.php
文件了么。
内心一阵激动后,觉得测试是否可行
我们知道 Linux
都是自带 Python
的,但是不同的版本 Python
版本不同,有的自带的是 Python2.6
,版本过低了,所以需要装一个高版本的,这里我选择 Python3
,注意不要覆盖系统自带的 Python2
。以下是大致的安装步骤:
wget http://python.org/ftp/python/... tar xf Python-3.6.0.tar.xz cd Python-3.6.0 ./configure --prefix=/usr/local/python3 make && make install ln -s /usr/local/python3/bin/python3 /usr/bin/python3
接下来终端输入: Python3
,如果出现
则安装成功。
安装完 Python3
之后,我们新建一个 test.py
文件,内容如下:
#!usr/bin/env python3` #-*- coding:utf-8 -*- import os ret = os.system("/usr/local/php7/bin/php /home/app/swoole_test.php") #请使用自己系统的绝对路径 print(ret)
然后我们在终端执行: /usr/bin/python3 /home/app/test.py
,注意:这里只是执行 PHP
文件,但是文件里的 echo
内容是不会在终端输出的,这时候就用到刚才新建的 log.txt
文件了。执行完 Python
文件后,我们去log文件检查下,发现内容已经写入,所以使用 Python
是可以实现 PHP
的 cli
模式的。┗|`O′|┛ 嗷~~
到这里就会有同学疑惑了,你这使用 Python
实现了 PHP
的 cli
模式,但是怎么通过web远程访问呢?这个时候就用到PHP的 exec
方法了,我们知道PHP的 exec
方法和Python的 os.system
方法一样是可以执行命令行命令的,所以我们可以新建一个 test.php
文件,内容如下:
<?php $program="/usr/bin/python3 /home/app/nongyephp/test.py"; #注意使用绝对路径 echo "begin<br>"; (exec ($program)); echo "end<br>"; die;
然后我们通过网页访问 test.php
文件。结果如下:
然后去log文件检查,发现也写入日志了,所以这个方法是可行的!
做到这里心里美滋滋的,不过老觉得好像哪里不对,终于终于意识到一个很傻逼的问题: 既然 PHP
可以直接有命令行函数,为啥多此一举借助 Python
然后在用 Python
的函数呢? 这不是脱了裤子放屁多此一举吗?
再大骂自己是傻逼N遍之后,我默默修改了 test.php
文件内容:
<?php echo "begin<br>"; $program="/usr/local/php7/bin/php /home/app/nongyephp/swoole_test.php"; #注意使用绝对路径 (exec ($program)); echo "end<br>"; die;
在直接访问 test.php
文件,反馈结果和借助 Python
一样,这样就可以免去 Python
那一步,直接用 PHP
的 exec
函数来执行 PHP
文件。
结尾
测试通过后发现这种方法是可以创建定时器并且通过web远程使用的,不过有个问题,如果用和我上述一样用网页模拟会发现网页刷新是要等 test.php
执行完才会结束,也就是说如果我们把延时器的时间设成30分钟会要等待30分钟才会有反馈信息,这种方式肯定行不通的,所以需要使用异步访问,比如使用web的 ajax
技术和其他异步技术,这里不再赘述
尾巴
以上只是我想到解决问题的想法和实施步骤,到了真正开发可能不会选择这种方式,因为没有经过性能测试,而且对于进程控制和线程控制并没有多深入的了解,所以以后做订单自动取消还是会选择方法2的吧。
The above method can actually completely omit the
Python
step. The reason why I did not remove it is to write down my implementation experience, because I think I may really encounter it during the development. Seeing this superfluous approach, in short, we need to think more, read more code, and find solutions that can be optimized. I feel that I am far behind here, so please share your encouragement
Related recommendations:
Example detailed explanation of the tab switching effect of Vue imitating Taobao order status
PHP implements the RSA signature generation order function using Alipay as an example
The above is the detailed content of Example of method to implement order delay processing in PHP. 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",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

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

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

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

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

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

Dreamweaver Mac version
Visual web development tools

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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
