summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-01-13 20:39:33 +0000
committerZeev Suraski <zeev@php.net>2000-01-13 20:39:33 +0000
commit24156db2526e62a653e5769b1492366701e815d4 (patch)
treed16a79c8c5854a4956388c94542a5858bb929f68 /php.ini-dist
parentf24931222c0df9b38de08f99f894136be2d9f533 (diff)
downloadphp-git-24156db2526e62a653e5769b1492366701e815d4.tar.gz
@- Added implicit_flush INI directive (Zeev)
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist6
1 files changed, 6 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist
index 99a07c8a21..d3d4aae294 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -56,6 +56,12 @@ output_buffering = Off ; Output buffering allows you to send header lines (inclu
; 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.
+implicit_flush = Off ; Implicit flush tells PHP to tell the output layer to flush itself
+ ; automatically after every output block. This is equivalent to
+ ; calling the PHP function flush() after each and every call to print()
+ ; or echo() and each and every HTML block.
+ ; Turning this option on has serious performance implications, and
+ ; is generally recommended for debugging purposes only.
allow_call_time_pass_reference = On ; whether to enable the ability to force arguments to be
; passed by reference at function-call time. This method
; is deprecated, and is likely to be unsupported in future