summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-08-09 06:17:06 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-08-09 06:17:06 +0000
commite300506be6edb51fc89b26a63cd32f03043958dc (patch)
treed0d4d6794479882a0b481ba2d8bb34fed3a26b2b
parent70ef3f67f37d77c50086d456c6c30fe8968e9caa (diff)
downloadphp-git-e300506be6edb51fc89b26a63cd32f03043958dc.tar.gz
Add unserialize_callback_func to php.ini-recommended.
-rw-r--r--php.ini-recommended9
1 files changed, 9 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended
index 036c7fb87d..2ea5a827ed 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -128,6 +128,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