Under WINDOWS, the path during compilation is the WINDOWS installation directory.
; In command line mode, the search path of PHP.INI can be replaced with the -C parameter.
; The syntax of this file is very simple. Whitespace characters and lines starting with a semicolon ´;´ are simply ignored (as you might
; Same as you guessed). Chapter titles (eg: [FOO]) are also simply ignored, even though in the future they may
; has some meaning.
;
; directives are specified using the following syntax:
; indicator identifier = value
; DIRECTIVE = VALUE
; indicates that the identifier is *case-sensitive* - FOO=BAR is different from FOO = BAR.
;
; The value can be a string, a number, a PHP constant (such as: E_ALL OR M_PI), INI constant
; A (ON, OFF, TRUE, FALSE, YES, NO AND NONE) , or an expression
; (eg: E_ALL & ~E_NOTICE), or a quoted string ("FOO").
;
; INI file expressions are restricted to bitwise operators and parentheses.
; | BITWISE OR
; & BITWISE AND
; ~ BITWISE NOT
; ! BOOLEAN NOT
;
; Boolean flags available 1, ON, TRUE OR YES These values are turned on.
; They can be set to off with values 0, OFF, FALSE OR NO.
;
; An empty string can be represented by nothing after the equal sign, or by using the NONE keyword:
;
; FOO = ; Set FOO to an empty string
; FOO = NONE ; Set FOO to an empty string
; FOO = "NONE" ; Set FOO to string´NONE´
;
; If you use constants in value settings, and these constants belong to dynamically loaded extension libraries (not PHP extensions, that is
; ZEND extensions), you can only use these constants *after* the line that calls in these extensions.
;
; All values set in the PHP.INI-DIST file are the same as the built-in default values (that is, if PHP.INI
; is not used or you deleted these lines, the default value is the same).
;;;;;;;;;;;;;;;;;;;;;;
; Language options ;
;;;;;;;;;;;;;;;;;;;;;;
ENGINE = ON
; Make PHP SCRIPTING LANGUAGE ENGINE (PHP scripting language engine) valid under APACHE.
SHORT_OPEN_TAG = ON
; Allows the flag (this simple representation). Otherwise only <?PHP AND <SCRIPT> TAGS will be recognized.
ASP_TAGS = OFF
; Allow ASP-STYLE <% %> TAGS
PRECISION = 14
All resources on this website are contributed and published by netizens, or reprinted by major download sites. Please check the integrity of the software yourself! All resources on this website are for learning and reference only. Please do not use them for commercial purposes, otherwise you will be responsible for all consequences incurred! If there is any infringement, please contact us to delete and remove it. Contact information: admin@php.cn