From d065c5413c9d99206cbe8fc2c92374209f7edf49 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 28 Aug 2017 16:46:28 +0200 Subject: refresh configuration files, sync with upstream, drop .so suffix --- php.ini | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'php.ini') 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=.so' and +; 'extension='php_.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=) syntax. ;;;; ; Note: packaged extension modules are now loaded via the .ini files -- cgit