We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d234d1 commit 54435c9Copy full SHA for 54435c9
NEWS
@@ -6,10 +6,14 @@ PHP NEWS
6
. Fixed bug #80121 (Null pointer deref if CurlHandle directly instantiated).
7
(Nikita)
8
9
-- SPL.
+- SPL:
10
. Fixed bug #65387 (Circular references in SPL iterators are not garbage
11
collected). (Nikita)
12
13
+- Standard:
14
+ . Fixed bug #64060 (lstat_stat_variation7.phpt fails on certain file systems).
15
+ (M. Voelker, cmb)
16
+
17
01 Oct 2020, PHP 8.0.0rc1
18
19
- CLI:
ext/standard/tests/file/lstat_stat_variation7.phpt
@@ -18,6 +18,7 @@ $old_stat = stat($file_name);
clearstatcache();
$blksize = PHP_OS_FAMILY === 'Windows' ? 4096 : $old_stat['blksize'];
20
fwrite($fh, str_repeat("Hello World", $blksize));
21
+fclose($fh);
22
$new_stat = stat($file_name);
23
24
// compare self stats
0 commit comments