summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2017-07-01 03:31:22 +0900
committerYasuo Ohgaki <yohgaki@php.net>2017-07-01 03:32:54 +0900
commita2d766503aed619493386a9b4ef8190be62b36f7 (patch)
treeb8a4bbc6df8488d8075082adfb214c9d29bfe4a6 /UPGRADING
parent66e5dc5b9b3ca5cf935be7211a821d51d1556890 (diff)
downloadphp-git-a2d766503aed619493386a9b4ef8190be62b36f7.tar.gz
Fixed bug #74514 5 session functions incorrectly warn when calling in read-only/getter mode
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING7
1 files changed, 7 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index c8d4baa3fd..9813574a18 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -86,6 +86,13 @@ PHP 7.2 UPGRADE NOTES
session_start()
. Session no longer initialize $_SESSION for invalid and useless session.
session_start()
+ . When headers are already sent and try to set new INI values, session_name(),
+ session_module_name(), session_save_path(), session_cache_limiter() and
+ session_cache_expire() are no longer works. Older PHPs accepts new values even
+ if new values will not be effective.
+ This new corrected behavior may affect command line mode CLI scripts that manage
+ sessions. Use output buffer just like web applications to resolve problems on
+ CLI scripts.
========================================