From f9d71a15a180592ef19ca38c4e1679443ee9823f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 15 Oct 2019 14:21:26 +0200 Subject: update to 7.4.0RC4 --- php.ini | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'php.ini') diff --git a/php.ini b/php.ini index e7db839..6f476b2 100644 --- a/php.ini +++ b/php.ini @@ -284,6 +284,13 @@ implicit_flush = Off ; callback-function. unserialize_callback_func = +; The unserialize_max_depth specifies the default depth limit for unserialized +; structures. Setting the depth limit too high may result in stack overflows +; during unserialization. The unserialize_max_depth ini setting can be +; overridden by the max_depth option on individual unserialize() calls. +; A value of 0 disables the depth limit. +;unserialize_max_depth = 4096 + ; When floats & doubles are serialized, store serialize_precision significant ; digits after the floating point. The default value ensures that when floats ; are decoded with unserialize, the data will remain the same. @@ -1568,6 +1575,11 @@ zend.assertions = -1 ; Default: 100000 ;mbstring.regex_stack_limit=100000 +; This directive specifies maximum retry count for mbstring regular expressions. It is similar +; to the pcre.backtrack_limit for PCRE. +; Default: 1000000 +;mbstring.regex_retry_limit=1000000 + [gd] ; Tell the jpeg decode to ignore warnings and try to create ; a gd image. The warning will then be displayed as notices -- cgit