diff options
Diffstat (limited to 'php.ini')
| -rw-r--r-- | php.ini | 23 | 
1 files changed, 11 insertions, 12 deletions
@@ -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  | 
