php-src/ext/standard/tests/file/bug39367.phpt
Arnaud Le Blanc c93fbf629b MFH:
Added clear_realpath_cache and filename parameters to clearstatcache() (Jani,
Arnaud)
[DOC] clearstatcache() now defaults to not affect the realpath cache.
clearstatcache() now takes two optionnal parameters, clear_realpath_cache to
clear the realpath cache (defaults to false), and filename to clear only the
given filename from the cache.
2008-08-07 09:25:33 +00:00

34 lines
644 B
PHP
Executable File

--TEST--
Bug #39367 (clearstatcache() doesn't clear realpath cache)
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip no symlinks on Windows');
}
?>
--FILE--
<?php
function test() {
unlink('/tmp/1link');
unlink('/tmp/1tmp');
unlink('/tmp/testfile1');
file_put_contents('/tmp/testfile1', 'ok');
symlink('/tmp/testfile1', '/tmp/1tmp');
rename('/tmp/1tmp', '/tmp/1link');
echo file_get_contents('/tmp/1link')."\n";
unlink('/tmp/1link');
clearstatcache(true);
echo file_get_contents('/tmp/1link')."\n";
unlink('/tmp/1link');
unlink('/tmp/1tmp');
unlink('/tmp/testfile1');
}
@test();
?>
--EXPECT--
ok