From c76dbefe05d8ef9e0d09205d94a7e3d1fc2b4b80 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Wed, 30 Oct 2019 11:31:28 +0100 Subject: [PATCH] Add UPGRADING note for stream_read() change Ref bug #78575. [ci skip] --- UPGRADING | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UPGRADING b/UPGRADING index e648f78e805..4edbfaa57b0 100644 --- a/UPGRADING +++ b/UPGRADING @@ -153,6 +153,9 @@ PHP 7.4 UPGRADE NOTES considered failures. . fread() and fwrite() on plain files will now throw a notice on failure, such as when trying to write to a read-only file resource. + . The stream_read() and stream_write() methods on stream wrappers now + interpret "false" as a failure return values. If no data is available, but + no error occurred, an empty string should be returned instead. . round(-0.0) will now return -0.0 rather than +0.0. - Tokenizer: