


curl - How to implement asynchronous operation in php without installing extensions
After I received the request processing, there was a very time-consuming operation that required requesting the WeChat interface. It required processing many orders and calling the WeChat interface. I want to perform these operations after echo. Message queue needs to install extensions such as memcacheq on the server. I do not have the right to operate the server and want to solve it with code. Is it possible to implement a message queue? Can anyone give me an example? I know nothing about queue operations. I saw that it can also be implemented using fsockopen. What is the difference between this and the message queue mechanism?
Reply content:
After I received the request processing, there was a very time-consuming operation that required requesting the WeChat interface. It required processing many orders and calling the WeChat interface. I want to perform these operations after echo. Message queue needs to install extensions such as memcacheq on the server. I do not have the right to operate the server and want to solve it with code. Is it possible to implement a message queue? Can anyone give me an example? I know nothing about queue operations. I saw that it can also be implemented using fsockopen. What is the difference between this and the message queue mechanism?
<code>//程序被阻塞10秒 shell_exec('timeout 10 vmstat 1 >/dev/null 2>&1 &'); //程序不会被阻塞 pclose(popen('timeout 10 vmstat 1 >/dev/null 2>&1 &', 'r')); //因此可以异步执行任务 pclose(popen("timeout 60 php /path/to/task.php '$arg' >/dev/null 2>&1 &", 'r')); </code>
The variable $arg is the parameter passed to the script task.php. This parameter is obtained through $argv[1] in task.php.
timeout 60 means the maximum execution time of the task.php script is 60 seconds. It can be removed if not needed. .
The essence of asynchronous implementation by pclose(popen()) is to open a process to execute blocking code.
It is suitable for asynchronous scenarios that do not require automatic return of results (callbacks) after execution is completed.
The string parameter $arg can be enclosed in single quotes, which can avoid the impact of some spaces, but it still has flaws.
In order to avoid Shell injection (compared to SQL injection), it is best to serialize the string parameter to a file,
Then Pass the file path parameter to the script task.php, and let task.php read the file, unserialize, deserialize and get the data.
The file name should be unique, for example, it can be user ID + process PID + time random number:
<code>$filename = md5(uniqid($uid.'_'.getmypid().'_'.mt_rand().'_', true)); </code>
The function fastcgi_finish_request
provided by PHP-FPM can flush all response data to the client and end the request. This allows the client to continue executing code that does not need to be output to the user after ending the connection, such as generating cache, but Will still block the current FPM worker process.
http://php.net/manual/zh/func...
fsockopen means making a request (similar to curl), but not waiting for the result to be returned.
So you can also use fsockopen. After you echo, fsockopen requests the local operation of the WeChat interface and it will be fine

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.


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

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

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
