/
proc
/
3430793
/
cwd
/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
standard
/
tests
/
file
/
File Upload :
llllll
Current File: //proc/3430793/cwd/usr/local/lsws/phpbuild/php-8.0.7/ext/standard/tests/file/unlink_variation2.phpt
--TEST-- Test unlink() function : usage variations - unlink file in use --FILE-- <?php /* Try to unlink file when file handle is still in use */ $file_path = __DIR__; echo "*** Testing unlink() on a file which is in use ***\n"; // temp file name used here $filename = "$file_path/unlink_variation2.tmp"; // create file $fp = fopen($filename, "w"); // try unlink() on $filename var_dump( unlink($filename) ); // expected: true on linux var_dump( file_exists($filename) ); // confirm file is deleted // now close file handle fclose($fp); echo "Done\n"; ?> --EXPECT-- *** Testing unlink() on a file which is in use *** bool(true) bool(false) Done
Copyright ©2k19 -
Hexid
|
Tex7ure