


Implementing Ajax long polling (LongPoll) based on jQuery and PHP_PHP tutorial
In the traditional AJAX polling method, the client queries the server for the latest data at user-defined intervals. This method of pulling data requires a short time interval to ensure the accuracy of the data, but if the time interval is too short, the customer service side will send multiple requests to the server in a short period of time.
Reverse AJAX, which is called long polling or COMET. The server and client need to maintain a long-term request, which allows the server to return messages to the client when there is data.
The requested time reaches 80 seconds. If no 'success' is returned from the server during these 80 seconds, the connection status will remain until data is returned or the value of 'success' is 0 before the connection is closed. After closing the connection, continue with the next request.
<ol class="dp-xml"> <li class="alt"><span><span class="tag"><span class="tag-name">div</span><span> </span><span class="attribute">id</span><span>=</span><span class="attribute-value">"msg"</span><span class="tag">></span><span class="tag"></span><span class="tag-name">div</span><span class="tag">></span><span> </span></span></span></li> <li><span class="tag"><span class="tag-name">input</span><span> </span><span class="attribute">id</span><span>=</span><span class="attribute-value">"btn"</span><span> </span><span class="attribute">type</span><span>=</span><span class="attribute-value">"button"</span><span> </span><span class="attribute">value</span><span>=</span><span class="attribute-value">"测试"</span><span> </span><span class="tag">/></span><span> </span></span></li> </ol>
PHP
Here is an infinite loop. The end condition of the loop is to obtain the return result and return Json data. And accepts the $_POST['time'] parameter to limit the loop timeout to avoid excessive waste of resources. (The browser will not send a message to the server when it is closed, and the use may continue in a loop)<ol class="dp-c"> <li class="alt"><span><span>$(</span><span class="keyword">function</span><span>(){ </span></span></li> <li> <span> $(</span><span class="string">"#btn"</span><span>).bind(</span><span class="string">"click"</span><span>,{btn:$(</span><span class="string">"#btn"</span><span>)},</span><span class="keyword">function</span><span>(evdata){ </span> </li> <li class="alt"><span> $.ajax({ </span></li> <li> <span> type:</span><span class="string">"POST"</span><span>, </span> </li> <li class="alt"> <span> dataType:</span><span class="string">"json"</span><span>, </span> </li> <li> <span> url:</span><span class="string">"data.php"</span><span>, </span> </li> <li class="alt"> <span> timeout:80000, </span><span class="comment">//ajax请求超时时间80秒 </span><span> </span> </li> <li> <span> data:{time:</span><span class="string">"80"</span><span>}, </span><span class="comment">//40秒后无论结果服务器都返回数据 </span><span> </span> </li> <li class="alt"> <span> success:</span><span class="keyword">function</span><span>(data,textStatus){ </span> </li> <li> <span> </span><span class="comment">//从服务器得到数据,显示数据并继续查询 </span><span> </span> </li> <li class="alt"> <span> </span><span class="keyword">if</span><span>(data.success==</span><span class="string">"1"</span><span>){ </span> </li> <li> <span> $(</span><span class="string">"#msg"</span><span>).append(</span><span class="string">"<br>[有数据]"</span><span>+data.text); </span> </li> <li class="alt"><span> evdata.data.btn.click(); </span></li> <li><span> } </span></li> <li class="alt"> <span> </span><span class="comment">//未从服务器得到数据,继续查询 </span><span> </span> </li> <li> <span> </span><span class="keyword">if</span><span>(data.success==</span><span class="string">"0"</span><span>){ </span> </li> <li class="alt"> <span> $(</span><span class="string">"#msg"</span><span>).append(</span><span class="string">"<br>[无数据]"</span><span>); </span> </li> <li><span> evdata.data.btn.click(); </span></li> <li class="alt"><span> } </span></li> <li><span> }, </span></li> <li class="alt"> <span> </span><span class="comment">//Ajax请求超时,继续查询 </span><span> </span> </li> <li> <span> error:</span><span class="keyword">function</span><span>(XMLHttpRequest,textStatus,errorThrown){ </span> </li> <li class="alt"> <span> </span><span class="keyword">if</span><span>(textStatus==</span><span class="string">"timeout"</span><span>){ </span> </li> <li> <span> $(</span><span class="string">"#msg"</span><span>).append(</span><span class="string">"<br>[超时]"</span><span>); </span> </li> <li class="alt"><span> evdata.data.btn.click(); </span></li> <li><span> } </span></li> <li class="alt"><span> } </span></li> <li><span> </span></li> <li class="alt"><span> }); </span></li> <li><span> }); </span></li> <li class="alt"><span> </span></li> <li><span>}); </span></li> </ol>
Operating effect: In the picture, you can see that the request time without data reaches 40S. In the 40S request, if Request to close when data is obtained.
<ol class="dp-c"> <li class="alt"><span><span class="keyword">if</span><span>(</span><span class="func">empty</span><span class="keyword">empty</span><span>(</span><span class="vars">$_POST</span><span>[</span><span class="string">'time'</span><span>]))</span><span class="func">exit</span><span>(); </span></span></li> <li> <span>set_time_limit(0);</span><span class="comment">//无限请求超时时间 </span><span> </span> </li> <li class="alt"> <span class="vars">$i</span><span>=0; </span> </li> <li> <span class="keyword">while</span><span> (true){ </span> </li> <li class="alt"> <span> </span><span class="comment">//sleep(1); </span><span> </span> </li> <li> <span> usleep(500000);</span><span class="comment">//0.5秒 </span><span> </span> </li> <li class="alt"> <span> </span><span class="vars">$i</span><span>++; </span> </li> <li><span> </span></li> <li class="alt"> <span> </span><span class="comment">//若得到数据则马上返回数据给客服端,并结束本次请求 </span><span> </span> </li> <li> <span> </span><span class="vars">$rand</span><span>=rand(1,999); </span> </li> <li class="alt"> <span> </span><span class="keyword">if</span><span>(</span><span class="vars">$rand</span><span></span> </li> <li> <span> </span><span class="vars">$arr</span><span>=</span><span class="keyword">array</span><span>(</span><span class="string">'success'</span><span>=></span><span class="string">"1"</span><span>,</span><span class="string">'name'</span><span>=></span><span class="string">'xiaocai'</span><span>,</span><span class="string">'text'</span><span>=></span><span class="vars">$rand</span><span>); </span> </li> <li class="alt"> <span> </span><span class="func">echo</span><span> json_encode(</span><span class="vars">$arr</span><span>); </span> </li> <li> <span> </span><span class="func">exit</span><span>(); </span> </li> <li class="alt"><span> } </span></li> <li><span> </span></li> <li class="alt"> <span> </span><span class="comment">//服务器($_POST['time']*0.5)秒后告诉客服端无数据 </span><span> </span> </li> <li> <span> </span><span class="keyword">if</span><span>(</span><span class="vars">$i</span><span>==</span><span class="vars">$_POST</span><span>[</span><span class="string">'time'</span><span>]){ </span> </li> <li class="alt"> <span> </span><span class="vars">$arr</span><span>=</span><span class="keyword">array</span><span>(</span><span class="string">'success'</span><span>=></span><span class="string">"0"</span><span>,</span><span class="string">'name'</span><span>=></span><span class="string">'xiaocai'</span><span>,</span><span class="string">'text'</span><span>=></span><span class="vars">$rand</span><span>); </span> </li> <li> <span> </span><span class="func">echo</span><span> json_encode(</span><span class="vars">$arr</span><span>); </span> </li> <li class="alt"> <span> </span><span class="func">exit</span><span>(); </span> </li> <li><span> } </span></li> <li class="alt"><span>} </span></li> </ol>http://www.bkjia.com/PHPjc/445814.html
www.bkjia.com
true
http: //www.bkjia.com/PHPjc/445814.html

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python are both high-level programming languages that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.


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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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

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.

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),

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment