@@ -24,15 +24,15 @@ PHP 8.6 UPGRADE NOTES
2424 array arguments types/values and raise a TypeError/ValueError
2525 accordingly.
2626
27+ - PCNTL:
28+ . pcntl_alarm() now raises a ValueError if the seconds argument is
29+ lower than zero or greater than platform's UINT_MAX.
30+
2731- PCRE:
2832 . preg_grep() now returns false instead of a partial array when a PCRE
2933 execution error occurs (e.g. malformed UTF-8 input with the /u modifier).
3034 This is consistent with other preg_* functions.
3135
32- - PCNTL:
33- . pcntl_alarm() now raises a ValueError if the seconds argument is
34- lower than zero or greater than platform's UINT_MAX.
35-
3636- Phar:
3737 . Phar::mungServer() now raises a ValueError when an invalid
3838 argument value is passed instead of being silently ignored.
@@ -228,6 +228,13 @@ PHP 8.6 UPGRADE NOTES
22822811. Changes to INI File Handling
229229========================================
230230
231+ - Mbstring:
232+ . The mbstring.detect_order INI directive now updates the internal detection
233+ order when changed at runtime via ini_set(). Previously, runtime changes
234+ using ini_set() did not take effect for mb_detect_order(). Setting the
235+ directive to NULL or an empty string at runtime now leaves the previously
236+ configured detection order unchanged.
237+
231238- Mysqli:
232239 . mysqli.default_port now checks the validity of the value which should be
233240 between 0 and 65535 included.
@@ -237,13 +244,6 @@ PHP 8.6 UPGRADE NOTES
237244 When used along with ZEND_JIT_DEBUG_TRACE_EXIT_INFO, the source of exit
238245 points is printed in exit info output, in debug builds.
239246
240- - Mbstring:
241- . The mbstring.detect_order INI directive now updates the internal detection
242- order when changed at runtime via ini_set(). Previously, runtime changes
243- using ini_set() did not take effect for mb_detect_order(). Setting the
244- directive to NULL or an empty string at runtime now leaves the previously
245- configured detection order unchanged.
246-
247247========================================
24824812. Windows Support
249249========================================
0 commit comments