summaryrefslogtreecommitdiffstats
path: root/php.ini
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-08-28 16:46:28 +0200
committerRemi Collet <remi@remirepo.net>2017-08-28 16:46:28 +0200
commitd065c5413c9d99206cbe8fc2c92374209f7edf49 (patch)
tree0243d52295d370abfb5e1b39ae51f393e39b13b0 /php.ini
parentf1e81da46b2fdb6726422486863981fcc0b28ed3 (diff)
refresh configuration files, sync with upstream, drop .so suffix
Diffstat (limited to 'php.ini')
-rw-r--r--php.ini23
1 files changed, 11 insertions, 12 deletions
diff --git a/php.ini b/php.ini
index 43c1877..ecc660c 100644
--- a/php.ini
+++ b/php.ini
@@ -155,7 +155,7 @@
; track_errors
; Default Value: Off
-; Development Value: Off
+; Development Value: On
; Production Value: Off
; variables_order
@@ -867,22 +867,21 @@ default_socket_timeout = 60
; If you wish to have an extension loaded automatically, use the following
; syntax:
;
-; extension=modulename.extension
-;
-; For example, on Windows:
-;
-; extension=msql.dll
+; extension=modulename
;
-; ... or under UNIX:
+; For example:
;
-; extension=msql.so
+; extension=mysqli
;
-; ... or with a path:
+; When the extension library to load is not located in the default extension
+; directory, You may specify an absolute path to the library file:
;
-; extension=/path/to/extension/msql.so
+; extension=/path/to/extension/mysqli.so
;
-; If you only provide the name of the extension, PHP will look for it in its
-; default extension directory.
+; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
+; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
+; deprecated in a future PHP major version. So, when it is possible, please
+; move to the new ('extension=<ext>) syntax.
;;;;
; Note: packaged extension modules are now loaded via the .ini files