diff options
author | sundarchi1 <31782486+sundarchi1@users.noreply.github.com> | 2017-12-07 17:42:02 -0500 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-12-09 18:36:36 +0100 |
commit | ca21ba3f82e8b3760a17ffd71002707381307866 (patch) | |
tree | 9146511cf3d275768cc96116c53e2f2a5d8ab951 /php.ini-development | |
parent | 706a157fc6537070081f055c24d27bb2775a96d8 (diff) | |
download | php-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-development')
-rw-r--r-- | php.ini-development | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/php.ini-development b/php.ini-development index 8dda4c41a9..618dd9db12 100644 --- a/php.ini-development +++ b/php.ini-development @@ -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), @@ -392,7 +392,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 @@ -727,13 +727,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 @@ -979,19 +979,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] |