thinkphp5 taglib custom tag tutorial

Learn to write for a while, finally done, by the way share!taglib is the custom tag function of tp framework. If you have used cms, you must have seen something similar:   {dede:arclist typeid='' row='' col='' titlelen='' infolen='' orderby='' keyword=''} ssss... {/dede:arclist}   Or:   {pc:content action="lists" cache="3600" num="20" page= ...

Added by cobaswosa on Sat, 04 Apr 2020 22:21:17 +0300

How to extract some class libraries from CodeIgniter framework for problem tracking

background Due to various reasons, there is no access to the complete call chain trace (┬). However, when we call each end interface through curl of php, we will request multiple times. So is there a way to capture these curl requests without embedding business code. Obviously, ci has basic hook operations. We can choose to send the collected d ...

Added by ridiculous on Sun, 24 Nov 2019 21:55:48 +0200

PHP+RabbitMQ complete code for message queuing

Why RabbitMq instead of ActiveMq or RocketMq?First of all, from a business point of view, I do not require 100% acceptance rate of messages, and I need to develop in combination with php. RabbitMq has a lower latency (subtle level) than RocketMq. As for ActiveMq, it seems that there are many problems. RabbitMq has good support for various langu ...

Added by Liquid Fire on Sun, 03 Nov 2019 13:38:00 +0200

SMS Authentication Code Function in PHP

In order to ensure the authenticity of users'information, websites often choose to send text messages to users' mobile phones to send verification code information. Only authenticated users can register. This not only ensures 100% accuracy of users'contact information, but also provides users with the most convenient and fast way to register.S ...

Added by videxx on Wed, 21 Aug 2019 05:17:31 +0300