Php output buffering cache and program cache_PHP tutorial
in
If
Test below
In order to make the test effect more obvious before testing, we
Output_buffering=off
Display_errors=on
Code
<strong><span 1</span> <span echo</span> "php"<span ; </span><span 2</span> <span header</span>("content-type:text/html;charset='utf-8'"<span ); </span><span 3</span> <span echo</span> 'ok';</strong>
will appear
php
Warning: Cannot modify header information - headers already sent by (output started at D:wwwapachehtdocstestt2.php:2) in D:wwwapachehtdocstestt2.php on line 3
ok
Code 2:
<strong><span 1</span> <span ob_start</span><span (); </span><span 2</span> <span echo</span> "php"<span ; </span><span 3</span> <span header</span>("content-type:text/html;charset='utf-8'"<span ); </span><span 4</span> <span echo</span> 'ok';</strong>
The result is completely correct
Cause analysis:
CodePhpecho ‘php’ has already sent a header message to the browser,
When it appears again
header("content-type:text/html;charset='utf-8'");
I saw another header information. At this time, the above header information had been typed back. I couldn't change it and an error occurred.
When code'php', put the data to be sent to the browser first into
Look at the following code to deepen your understanding
Code
<strong><span ob_start</span><span (); </span><span echo</span> "php"<span ; </span><span header</span>("content-type:text/html;charset='utf-8'"<span ); </span><span echo</span> 'ok'<span ; </span><span echo</span> '<hr/>'<span ; </span><span $ob</span>=<span ob_get_contents</span><span (); </span><span echo</span> <span $ob</span>;</strong>
will output
Ob_get_contents()
Ob_get_contents()
Code
<strong><span 1</span> <span ob_start</span><span (); </span><span 2</span> <span echo</span> "php"<span ; </span><span 3</span> <span ob_clean</span>();<span //</span><span 清除缓存内容但不关闭缓存区,还能用(往里添加东西)</span> <span 4</span> <span header</span>("content-type:text/html;charset='utf-8'"<span ); </span><span 5</span> <span echo</span> 'ok'<span ; </span><span 6</span> <span echo</span> '<hr/>'<span ; </span><span 7</span> <span $ob</span>=<span ob_get_contents</span><span (); </span><span 8</span> <span echo</span> <span $ob</span>;</strong>
Result:
Code
<strong><span ob_start</span><span (); </span><span echo</span> "php"<span ; </span><span ob_end_clean</span>();<span //</span><span 清空缓存内容并关闭缓存区,ob_get_contents取不到内容</span> <span header</span>("content-type:text/html;charset='utf-8'"<span ); </span><span echo</span> 'ok'<span ; </span><span echo</span> '<hr/>'<span ; </span><span $ob</span>=<span ob_get_contents</span><span (); </span><span echo</span> <span $ob</span>;</strong>
Result:
Code
<strong><span ob_start</span><span (); </span><span echo</span> "php"<span ; </span><span ob_end_flush</span>();<span //</span><span 把缓存送到程序缓存内并关闭ob缓存</span> <span header</span>("content-type:text/html;charset='utf-8'"<span ); </span><span echo</span> 'ok'<span ; </span><span echo</span> '<hr/>'<span ; </span><span $ob</span>=<span ob_get_contents</span><span (); </span><span echo</span> <span $ob</span>;</strong>
Code
<strong><span ob_start</span><span (); </span><span echo</span> "php"<span ; </span><span ob_flush</span>();<span //</span><span 把Ob 缓存送到程序缓存,不关闭ob缓存</span> <span header</span>("content-type:text/html;charset='utf-8'"<span ); </span><span echo</span> 'ok'<span ; </span><span echo</span> '<hr/>'<span ; </span><span $ob</span>=<span ob_get_contents</span><span (); </span><span echo</span> <span $ob</span>;</strong>
Result:
Ob_clean()
Clear
Ob_get_flush()
Flush cache to program cache, close
Code
<strong><span Ob_start</span><span (); </span><span echo</span> 'abc'<span ; </span><span header</span>("content-type:text/html;charset='utf-8'"<span ); </span><span echo</span> 'hello'<span ; </span><span Ob_flush</span><span (); </span><span echo</span> 'aa'<span ; </span><span echo</span> <span ob_get_contents</span><span (); </span><span //</span><span abchelloaaaa</span></strong>
2.ob_flush(),flush()
Code
<strong><span ob_start</span><span (); </span><span echo</span> 'a'<span ; </span><span flush</span>();<span //</span><span 把Ob缓存冲刷到程序缓存再冲刷到浏览器输出,不影响ob缓存</span> <span echo</span> <span ob_get_contents</span><span (); </span><span //</span><span aa</span></strong>
Code
<strong><span ob_start</span><span (); </span><span echo</span> 'a'<span ; </span><span ob_flush</span>();<span //</span><span 把Ob缓存冲刷到程序缓存,ob里没有了缓存内容</span> <span echo</span> "<br/>ob_con".<span ob_get_contents</span><span (); </span><span //</span><span a 是按正常输出的,Ob里没内容</span></strong>
代码
<strong><span echo</span> <span str_repeat</span>(" ",1024);<span //</span><span 一些版本的 Microsoft Internet Explorer 只有当接受到的256个字节以后才开始显示该页面,所以必须发送一些额外的空格来让这些浏览器显示页面内容。 </span> <span for</span>(<span $i</span>=0;<span $i</span><5;<span $i</span>++<span ){ </span><span echo</span> <span $i</span><span ; </span><span echo</span> "<br/>"<span ; </span><span sleep</span>(1<span ); </span><span flush</span><span (); }</span></strong>
会一秒输出一个数字
如果没有

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa


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

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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.
