current location: Home > Download > Learning resources > php e-book > Chinese annotated version of the php configuration file php.ini (09.4)

Chinese annotated version of the php configuration file php.ini (09.4)
Classify: Learning materials / php e-book | Release time: 2017-12-08 | visits: 3111645 |
Download: 335 |
Latest Downloads
Horror Beat Phase Maker
Himalayan Children
Zebra AI
Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
24 HoursReading Leaderboard
- 1 How to Find and Manage the Windows Startup Folder for All Users - Make Tech Easier
- 2 Monster Hunter Wilds: Sleep Sac Location
- 3 Fix Windows 10 Airplane Mode Stuck (2025)
- 4 CSS IDs and Classes : a simple guide
- 5 [Multiple Resources] Windows 11 Thunderbolt Driver Download - MiniTool
- 6 Python Loop Control: For vs While - A Comparison
- 7 Do I need a phone number to register for ChatGPT? We also explain what to do if you can't register
- 8 What Is the About Blank Page on Chrome/Edge/Firefox? - MiniTool
- 9 How to Fix Netflix Code NW-3-6? Here Are 3 Useful Solutions! - MiniTool
- 10 Spotify Keeps Me Logging Me out: Here Are Some Easy Fixes - MiniTool
- 11 How to Combine Two Lists in Python: 5 Easy Ways
- 12 Kingdom Come Deliverance 2 Where to find Entrance to Secret Passage
- 13 Can’t Turn off Focus Assist in Windows 11/10? Here Is the Guide! - MiniTool
- 14 Best Features for Javascript vs Java
- 15 Tears of the Kingdom - Rasiwak Shrine Walkthrough - The Legend of Zelda: Tears of the Kingdom
Latest Tutorials
-
- Go language practical GraphQL
- 3315 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4644 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2687 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3352 2024-03-29
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
