//ignore_user_abort(true);//是否忽略浏览器的断开而继续执行脚本 header( 'Content-Type: text/html;charset=utf-8' ); echo str_pad("",1000); //输出1000个空格(浏览器需要接受一定长度的数据之后才会输出内容) echo 'begin...<br>'; ob_flush(); flush(); for($i=0;$i'; if ( connection_aborted() )//检查是否断开客户机。 如果已终止连接,则该函返回 1,否则返回 0 { exit; } ob_flush(); flush(); sleep(1);//睡眠一秒 } echo 'ok';/*
First clarify the output order of PHP
1. Turn on the php output cache: echo,print -> php output_buffring -> server buffering -> browser buffering -> browser display
2. Not open php Output cache: echo, print -> server buffering -> browser buffering -> browser display
Also clarify the browser's output cache: IE is 256Bytes, Chrome and FireFox are 1000Bytes, only the output data reaches this length or script The data will be output on the page only after the browser is terminated
Let’s talk about several PHP settings and APIs used:
output_buffering configuration in 1.php.ini
?Off: means turning off PHP output caching
?On: turning on unlimited Large output cache
?4096: Turn on the output cache with a size of 4096Byte
Implicit_flush configuration in 2.php.ini
?On: Indicates that after each output (such as echo, print), the flush() function is automatically called and the output is directed
?Off: Contrary to On, flush() will not be called after each output. It needs to wait until the server buffering is full before outputting. However, we can use the flush() function to replace it. It doesn’t matter if it is not enabled, but it is more flexible
3 .ob_flush() function: Take out the data from PHP buffering and put it into server buffering
4.flush() function: Take out the data from Server buffering and put it into browser buffering
5.ob_start() function: Open a buffer on the server Save all output. So anytime echo is used, the output will be added to the buffer until the program ends or is terminated using ob_flush(). Then the contents of the buffer in the server will be sent to the browser, which will be parsed and displayed by the browser.
ob_* series of functions operate the output buffer of PHP itself.
ob_get_contents() - Returns the contents of the output buffer
ob_flush( ) - flush out (send out) the contents of the output buffer
ob_clean() - clear (erase) the output buffer
ob_end_flush() - flush out (send out) the contents of the output buffer and close the buffer
ob_end_clean() - clear ( Erase) buffer and close the output buffer
flush() - Flush the output buffer
Summary:
ob_flush is to flush PHP's own buffer.
The function ob_end_clean will clear the contents of the buffer and close the buffer, but will not output content.
At this time, a function ob_get_contents() must be used in front of ob_end_clean() to obtain the contents of the buffer.
In this case, the content can be saved to a variable before executing ob_end_clean(), and then the variable can be operated after ob_end_clean()
Can be used to cache static html content
Note: flush, strictly speaking, This only has practical effect when PHP is installed as a Module (handler or filter) of apache. It refreshes the buffer of WebServer (which can be considered to refer specifically to apache).
1. Under the sapi of apache module, flush will By calling the flush member function pointer of sapi_module, the api of apache is indirectly called: ap_rflush refreshes the output buffer of apache. Of course, the manual also says that there are some other modules of apache that may change the result of this action..
2 .Some Apache modules, such as mod_gzip, may perform output caching themselves, which will cause the results generated by the flush() function to not be sent to the client browser immediately.
Even the browser will cache the received content before displaying it. For example, the Netscape browser caches content until it receives a newline or the beginning of an html tag, and does not display an entire table until it receives a tag.
3. Some versions of Microsoft Internet Explorer will only start to display the page after receiving 256 bytes, so some additional spaces must be sent to allow these browsers to display the page content.
So, the correct order to use the two is: ob_flush first, then flush.
Of course, under other sapi, you can not call flush, but in order to ensure the portability of your code, it is recommended to use it together.
*/
Source:
http:// bbs.csdn.net/topics/310167610
http://my.oschina.net/miaowang/blog/349290
http://www.cnblogs.com/daxian2012/archive/2012/ 09/12/2682136.html
Thank you all for your selfless sharing!
The above introduces the sorting of data output while executing PHP, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.

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.
