Skip to content

Commit c8e1fc0

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: [skip ci] Test opcache_invalidate() return value for deleted files
2 parents e044442 + bc14827 commit c8e1fc0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/opcache/tests/opcache_invalidate_deleted_file.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ PHP);
1616
var_dump(include $file);
1717
unlink($file);
1818
var_dump(include $file);
19-
opcache_invalidate($file);
19+
var_dump(opcache_invalidate($file));
2020
var_dump(@(include $file));
2121

2222
?>
2323
--EXPECT--
2424
int(42)
2525
int(42)
26+
bool(true)
2627
bool(false)

0 commit comments

Comments
 (0)