background image

; you may only use these constants *after* the line that loads the extension.
;

;
;;;;;;;;;;;;;;;;;;;

; About this file ;
;;;;;;;;;;;;;;;;;;;

; All the values in the php.ini-dist file correspond to the builtin
; defaults (that is, if no php.ini is used, or if you delete these lines,

; the builtin defaults will be identical).

;;;;;;;;;;;;;;;;;;;;

; Language Options ;
;;;;;;;;;;;;;;;;;;;;

; Enable the PHP scripting language engine under Apache.

engine = On

; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
zend.ze1_compatibility_mode = Off

; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.

; NOTE: Using short tags should be avoided when developing applications or
; libraries that are meant for redistribution, or deployment on PHP

; servers which are not under your control, because short tags may not
; be supported on the target server. For portable, redistributable code,

; be sure not to use short tags.
short_open_tag = On

; Allow ASP-style <% %> tags.

asp_tags = Off

; The number of significant digits displayed in floating point numbers.
precision    =  12

; Enforce year 2000 compliance (will cause problems with non-compliant browsers)

y2k_compliance = On

; Output buffering allows you to send header lines (including cookies) even
; after you send body content, at the price of slowing PHP's output layer a

; bit.  You can enable output buffering during runtime by calling the output
; buffering functions.  You can also enable output buffering for all files by

; setting this directive to On.  If you wish to limit the size of the buffer
; to a certain size - you can use a maximum number of bytes instead of 'On', as

; a value for this directive (e.g., output_buffering=4096).
output_buffering = Off

; You can redirect all of the output of your scripts to a function.  For

; example, if you set output_handler to "mb_output_handler", character
; encoding will be transparently converted to the specified encoding.

; Setting any output handler automatically turns on output buffering.
; Note: People who wrote portable scripts should not depend on this ini

;       directive. Instead, explicitly set the output handler using ob_start().
;       Using this ini directive may cause problems unless you know what script

;       is doing.
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"

;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
; Note: output_handler must be empty if this is set 'On' !!!!