search
HomeBackend DevelopmentPHP TutorialPHP asynchronous data execution method

PHP asynchronous data execution method

Jun 05, 2018 pm 04:08 PM
phpasynchronoustransfer

This article mainly introduces the method of PHP asynchronous data execution. Interested friends can refer to it. I hope it will be helpful to everyone.

The code is as follows:

<?php 
$count = count($emailarr);
for($i =0; $i < $count; $i++) 
{ 
  sendmail();//发送邮件 
} 
?>

This code has a very poor user experience and cannot be used in practice. First, sending so many emails will cause the server to run timeout. In fact, the long user waiting time will make the user System product doubts and loss of confidence. However, the user does not need to wait until all 1,000 emails have been sent before submitting the message successfully. We can directly prompt the user to send the message successfully after submitting it to the background, and then let the background program silently send it one by one.
At this time we need "asynchronous execution" technology to execute the code. The characteristic of asynchronous execution is silent execution in the background. The user does not need to wait for the execution result of the code. The benefits of using asynchronous execution:

  • Get rid of the application's dependence on a single task

  • Improve the execution efficiency of the program

  • Improves the scalability of the program

  • Improved user experience in certain scenarios

  • Because PHP does not support multi-threading, use asynchronous calling to request multiple HTTPs The parallel execution effect of the program is achieved, but please note that if there are too many HTTP requests, the system overhead will be greatly increased

Common ways of asynchronous execution of PHP1. The client page uses AJAX technology to request the serverThe simplest way is to embed an AJAX call in the HTML code returned to the client, or embed a img tag, src points to the time-consuming script to be executed. This method is the simplest and fastest. The server does not need to make any calls.
But the disadvantage is that generally speaking, Ajax should be triggered after onLoad. That is to say, if the user clicks on the page and then closes it, our background script will not be triggered.
If you use the img tag, this method cannot be called asynchronous execution in the strict sense. The user's browser will wait for a long time for the execution of the php script to be completed, that is, the status bar of the user's browser always shows that it is still loading. Of course, other methods with similar principles can also be used, such as script tags and so on.
2. popen() functionresource popen (string command, string mode);
Open a pipe pointing to the process that is generated by the execution of the given command command. Opens a pipe to the process spawned by execution of the command that spawned the given command. So you can pass it by calling it, but ignore its output.
pclose(popen("/home/xinchen/backend.php &", 'r'));
This method avoids the shortcomings of the first method and is also fast. But the problem is that this method cannot request another WebService through the HTTP protocol and can only execute local script files. And it can only be opened in one direction, and cannot pass a large number of parameters to the called script. And if the number of visits is high, a large number of processes will be generated. If you use external resources, you have to consider the competition yourself.
3. CURL extension CURL is a powerful HTTP command line tool that can simulate HTTP requests such as POST/GET, and then obtain and extract data and display it on "standard output" (stdout).

$ch = curl_init();
$curl_opt = array(CURLOPT_URL, &#39;http://www.example.com/backend.php&#39;,
       CURLOPT_RETURNTRANSFER, 1,
       CURLOPT_TIMEOUT, 1,);
 
curl_setopt_array($ch, $curl_opt);
curl_exec($ch);
curl_close($ch);

Using CURL requires setting CUROPT_TIMEOUT to 1 (the minimum is 1, depressed). That is, the client must wait at least 1 second.
4. fscokopen() function fsockopen is a very powerful function that supports socket programming. You can use fsockopen to implement socket programs such as email sending, etc. To use fcockopen, you need to manually splice out the header part.

$fp = fsockopen(www.jb51.net, 80, $errno, $errstr, 30);
if (!$fp) {
 echo "$errstr ($errno)<br />\n";
} else {
 $out = "GET /backend.php / HTTP/1.1\r\n";
 $out .= "Host: www.jb51.net\r\n";
 $out .= "Connection: Close\r\n\r\n";
 
 fwrite($fp, $out);
 /*忽略执行结果
 while (!feof($fp)) {
  echo fgets($fp, 128);
 }*/
 fclose($fp);
}

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

Notes on the use of PHP flush function

Sharing of how to develop custom menus on php WeChat

Detailed explanation of php WeChat development access example

The above is the detailed content of PHP asynchronous data execution method. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

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

Video Face Swap

Video Face Swap

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

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

DVWA

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