mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Add unserialize_callback_func to php.ini-recommended.
This commit is contained in:
parent
70ef3f67f3
commit
e300506be6
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue