diff options
| author | Zeev Suraski <zeev@php.net> | 1999-08-24 23:12:50 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-08-24 23:12:50 +0000 |
| commit | 7e250d06f5eb50c12d99921d768a8469d7de9c46 (patch) | |
| tree | 29d634dc7aa35ea3d03cccb786c64fb91acd6845 /php.ini-dist | |
| parent | d8a322e7be07473647730144a5507f7da82b9680 (diff) | |
| download | php-git-7e250d06f5eb50c12d99921d768a8469d7de9c46.tar.gz | |
Add output_buffering directive
Diffstat (limited to 'php.ini-dist')
| -rw-r--r-- | php.ini-dist | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist index 5f54386575..2342219ad5 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -38,9 +38,16 @@ short_open_tag = On ; allow the <? tag. otherwise, only <?php and <script> tags asp_tags = Off ; allow ASP-style <% %> tags precision = 14 ; number of significant digits displayed in floating point numbers y2k_compliance = Off ; whether to be year 2000 compliant (will cause problems with non y2k compliant browsers) +output_buffering = Off ; Output buffering allows you to send header lines (including cookies) + ; even after you send body content, in the price of slowing PHP's + ; output layer a bit. + ; You can enable output buffering by in runtime by calling the output + ; buffering functions, or enable output buffering for all files + ; by setting this directive to On. ; Safe Mode safe_mode = Off safe_mode_exec_dir = + ; Colors for Syntax Highlighting mode. Anything that's acceptable in <font color=???> would work. highlight.string = #DD0000 highlight.comment = #FF8000 @@ -48,6 +55,7 @@ highlight.keyword = #007700 highlight.bg = #FFFFFF highlight.default = #0000BB highlight.html = #000000 + ; Misc allow_builtin_links = Off ; Sets whether phpinfo() will generate built-in links that display the PHP ; and Zend logos, and tells PHP whether to honor them or not. |
