summaryrefslogtreecommitdiff
path: root/php.ini-production
diff options
context:
space:
mode:
authorsundarchi1 <31782486+sundarchi1@users.noreply.github.com>2017-12-07 17:42:02 -0500
committerNikita Popov <nikita.ppv@gmail.com>2017-12-09 18:36:36 +0100
commitca21ba3f82e8b3760a17ffd71002707381307866 (patch)
tree9146511cf3d275768cc96116c53e2f2a5d8ab951 /php.ini-production
parent706a157fc6537070081f055c24d27bb2775a96d8 (diff)
downloadphp-git-ca21ba3f82e8b3760a17ffd71002707381307866.tar.gz
Make ini formatting more consistent
Default values should have no leading space, everything else should have one.
Diffstat (limited to 'php.ini-production')
-rw-r--r--php.ini-production28
1 files changed, 14 insertions, 14 deletions
diff --git a/php.ini-production b/php.ini-production
index 8ccd9bd4ff..ca9a580c6b 100644
--- a/php.ini-production
+++ b/php.ini-production
@@ -58,9 +58,9 @@
; An empty string can be denoted by simply not writing anything after the equal
; sign, or by using the None keyword:
-; foo = ; sets foo to an empty string
-; foo = None ; sets foo to an empty string
-; foo = "None" ; sets foo to the string 'None'
+; foo = ; sets foo to an empty string
+; foo = None ; sets foo to an empty string
+; foo = "None" ; sets foo to the string 'None'
; If you use constants in your value, and these constants belong to a
; dynamically loaded extension (either a PHP extension or a Zend extension),
@@ -397,7 +397,7 @@ max_input_time = 60
;max_input_nesting_level = 64
; How many GET/POST/COOKIE input variables may be accepted
-; max_input_vars = 1000
+;max_input_vars = 1000
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
@@ -734,13 +734,13 @@ user_dir =
; Directory in which the loadable extensions (modules) reside.
; http://php.net/extension-dir
-; extension_dir = "./"
+;extension_dir = "./"
; On windows:
-; extension_dir = "ext"
+;extension_dir = "ext"
; Directory where the temporary files should be placed.
; Defaults to the system default (see sys_get_temp_dir)
-; sys_temp_dir = "/tmp"
+;sys_temp_dir = "/tmp"
; Whether or not to enable the dl() function. The dl() function does NOT work
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
@@ -986,19 +986,19 @@ cli_server.color = On
;sqlite3.extension_dir =
[Pcre]
-;PCRE library backtracking limit.
+; PCRE library backtracking limit.
; http://php.net/pcre.backtrack-limit
;pcre.backtrack_limit=100000
-;PCRE library recursion limit.
-;Please note that if you set this value to a high number you may consume all
-;the available process stack and eventually crash PHP (due to reaching the
-;stack size limit imposed by the Operating System).
+; PCRE library recursion limit.
+; Please note that if you set this value to a high number you may consume all
+; the available process stack and eventually crash PHP (due to reaching the
+; stack size limit imposed by the Operating System).
; http://php.net/pcre.recursion-limit
;pcre.recursion_limit=100000
-;Enables or disables JIT compilation of patterns. This requires the PCRE
-;library to be compiled with JIT support.
+; Enables or disables JIT compilation of patterns. This requires the PCRE
+; library to be compiled with JIT support.
;pcre.jit=1
[Pdo]