summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-08-09 06:18:46 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-08-09 06:18:46 +0000
commit872e0b0c712f462aa5cc43ea3e0701db0ca01558 (patch)
tree5747f31fe236f41afe22479a4f913913b546d2be /php.ini-dist
parente300506be6edb51fc89b26a63cd32f03043958dc (diff)
downloadphp-git-872e0b0c712f462aa5cc43ea3e0701db0ca01558.tar.gz
Move unserialize_callback_func description a little
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist18
1 files changed, 9 insertions, 9 deletions
diff --git a/php.ini-dist b/php.ini-dist
index cfd948c7b7..b7f603d1cf 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -100,15 +100,6 @@ output_buffering = Off
; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
output_handler =
-; The unserialize callback function will called (with the undefind class'
-; name as parameter), if the unserializer finds an undefined class
-; which should be instanciated.
-; A warning appears if the specified function is not defined, or if the
-; function doesn't include/implement the missing class.
-; So only set this entry, if you really want to implement such a
-; callback-function.
-unserialize_callback_func=
-
; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
@@ -124,6 +115,15 @@ zlib.output_compression = Off
; implications and is generally recommended for debugging purposes only.
implicit_flush = Off
+; The unserialize callback function will called (with the undefind class'
+; name as parameter), if the unserializer finds an undefined class
+; which should be instanciated.
+; A warning appears if the specified function is not defined, or if the
+; function doesn't include/implement the missing class.
+; So only set this entry, if you really want to implement such a
+; callback-function.
+unserialize_callback_func=
+
; Whether to enable the ability to force arguments to be passed by reference
; at function call time. This method is deprecated and is likely to be
; unsupported in future versions of PHP/Zend. The encouraged method of