PHP.ini Chinese Version (1) for php-5.2

Source: Internet
Author: User
Tags bitwise operators
PHP.ini Chinese version (i) for php-5.2
Reference: http://lamp.linux.gov.cn/PHP/php-5_2-ini.html

Author: Jin Bu

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; about PHP.ini;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; This file must be named ' php.ini ' and placed in the directory specified by the PHPINIDIR directive in httpd.conf.
; The latest version of PHP.ini can be viewed in the following two locations:
; Http://cvs.php.net/viewvc.cgi/php-src/php.ini-recommended?view=co
; Http://cvs.php.net/viewvc.cgi/php-src/php.ini-dist?view=co


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Grammar;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; The syntax of the file is very simple. whitespace characters and lines beginning with semicolons are simply ignored.
; Chapter headings (For example: [PHP]) are also simply ignored, even though they may have some meaning in the future.
;
; The format of the instruction is as follows:
; directive = value
; The instruction name (Directive) is case-sensitive! So "Foo=bar" is different from "Foo=bar".
; Value can be:
; 1. Strings defined in quotation marks (e.g. "foo")
; 2. A number (integer or floating point, such as: 0, 1, 34,-1, 33.55)
; 3. A PHP constant (for example: E_all, M_PI)
; 4. One INI constant (on, Off, none)
; 5. An expression (for example: E_all & ~e_notice)
;
; INI file uses only: bitwise operators, logical non, parentheses:
; | Bit or
; & Bit and
; ~ Bit non-
; ! Logical Non-
;
; The Boolean flag is opened with on, and off.
;
; An empty string can be used after the equal sign to not write anything, or with 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 the instruction value in the dynamic extension (PHP extension or zend extension),
; Then you can only use these constants after loading these dynamically extended command lines.


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; httpd.conf;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; You can override php.ini values for a specific virtual host or directory in httpd.conf for more flexible configuration:
; php_admin_value name value; set non-bool directives, set value to None to clear previous settings
; php_admin_flag name On|off; only instructions for setting the bool type
; [hint] because many directives do not allow Php_value/php_flag to be set, these two are not recommended.
; PHP constants (such as E_all) can only be used in php.ini, and the corresponding mask values must be used in httpd.conf.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.