mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.3'
* PHP-8.3: [skip ci] Test opcache_invalidate() return value for deleted files
This commit is contained in:
@@ -16,11 +16,12 @@ PHP);
|
||||
var_dump(include $file);
|
||||
unlink($file);
|
||||
var_dump(include $file);
|
||||
opcache_invalidate($file);
|
||||
var_dump(opcache_invalidate($file));
|
||||
var_dump(@(include $file));
|
||||
|
||||
?>
|
||||
--EXPECT--
|
||||
int(42)
|
||||
int(42)
|
||||
bool(true)
|
||||
bool(false)
|
||||
|
||||
Reference in New Issue
Block a user