什么是输出缓冲,为什么要在PHP中使用它?
当前回答
2019年更新。如果你有专用服务器和SSD或更好的NVM, 3.5GHZ。你不应该使用缓冲来让加载速度更快的网站在100 -150毫秒。
由于网络比2019年使用性能服务器(服务器,内存,磁盘)和打开APC PHP处理脚本慢,生成脚本有时只需要70ms,另一次仅是网络需要时间,从10ms到150ms从位于用户服务器。
所以如果你想要快150ms,缓冲就会变慢,因为需要额外的缓冲数据收集,这会产生额外的成本。10年前,当服务器制作1s脚本时,它很有用。
请小心output_buffering有限制,如果你想使用jpg加载它会自动刷新和崩溃发送。
欢呼。
你可以制造快速的河流 或 你可以安全地做tama:)
其他回答
ob_start(); // turns on output buffering
$foo->bar(); // all output goes only to buffer
ob_clean(); // delete the contents of the buffer, but remains buffering active
$foo->render(); // output goes to buffer
ob_flush(); // send buffer output
$none = ob_get_contents(); // buffer content is now an empty string
ob_end_clean(); // turn off output buffering
缓冲区可以嵌套,因此当一个缓冲区处于活动状态时,另一个ob_start()会激活一个新的缓冲区。因此ob_end_flush()和ob_flush()并不是真正地将缓冲区发送到输出,而是发送到父缓冲区。只有当没有父缓冲区时,才会将内容发送到浏览器或终端。
这里有很好的解释:https://phpfashion.com/everything-about-output-buffering-in-php
Web开发人员的输出缓冲,初学者指南:
Without output buffering (the default), your HTML is sent to the browser in pieces as PHP processes through your script. With output buffering, your HTML is stored in a variable and sent to the browser as one piece at the end of your script. Advantages of output buffering for Web developers Turning on output buffering alone decreases the amount of time it takes to download and render our HTML because it's not being sent to the browser in pieces as PHP processes the HTML. All the fancy stuff we can do with PHP strings, we can now do with our whole HTML page as one variable. If you've ever encountered the message "Warning: Cannot modify header information - headers already sent by (output)" while setting cookies, you'll be happy to know that output buffering is your answer.
2019年更新。如果你有专用服务器和SSD或更好的NVM, 3.5GHZ。你不应该使用缓冲来让加载速度更快的网站在100 -150毫秒。
由于网络比2019年使用性能服务器(服务器,内存,磁盘)和打开APC PHP处理脚本慢,生成脚本有时只需要70ms,另一次仅是网络需要时间,从10ms到150ms从位于用户服务器。
所以如果你想要快150ms,缓冲就会变慢,因为需要额外的缓冲数据收集,这会产生额外的成本。10年前,当服务器制作1s脚本时,它很有用。
请小心output_buffering有限制,如果你想使用jpg加载它会自动刷新和崩溃发送。
欢呼。
你可以制造快速的河流 或 你可以安全地做tama:)
输出控制函数允许您 来控制何时发送输出 脚本。这在 有几种不同的情况, 特别是当你需要发送头信息的时候 到浏览器后,您的脚本 开始输出数据。输出 控制功能不受影响 使用header()或 Setcookie(),仅用于 echo()和PHP块之间的数据 代码。
http://php.net/manual/en/book.outcontrol.php
更多资源:
使用PHP输出缓冲
这是对php输出缓冲的总结。(XAMPP php.ini)
Output buffering is a mechanism for controlling how much output data (excluding headers and cookies) PHP should keep internally before pushing that data to the client. If your application's output exceeds this setting, PHP will send that data in chunks of roughly the size you specify. Turning on this setting and managing its maximum buffer size can yield some interesting side-effects depending on your application and web server. You may be able to send headers and cookies after you've already sent output through print or echo. You also may see performance benefits if your server is emitting less packets due to buffered output versus PHP streaming the output as it gets it. On production servers, 4096 bytes is a good setting for performance reasons.
注意:输出缓冲也可以通过输出缓冲控制来控制 功能。
可能的值:
On =启用,缓冲区不受限制。(请谨慎使用)
关=禁用
Integer =启用缓冲区,并以字节为单位设置缓冲区的最大大小。
注意:这个指令对于CLI SAPI是硬编码为Off的
默认值:关闭
开发价值:4096
产值:4096
http://php.net/output-buffering output_buffering = 4096
推荐文章
- 阻止人们入侵基于php的Flash游戏高分表的最佳方法是什么
- PHP子字符串提取。获取第一个'/'之前的字符串或整个字符串
- __construct函数的作用是什么?
- PHP中的异步shell执行器
- Laravel 5 -如何访问在视图存储上传的图像?
- 为什么在PHP中使用sprintf函数?
- “质量分配”在Laravel中是什么意思?
- 在逗号上爆炸字符串,并修剪每个值的潜在空格
- PHP与MySQL 8.0+错误:服务器请求身份验证方法未知的客户端
- laravel5“LIKE”对等物(雄辩的)
- 在函数中使用默认实参
- 转换php数组到Javascript
- PHP PDO:字符集,集名称?
- PHP函数生成slug (URL字符串)
- GCM与PHP(谷歌云消息传递)