1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00
Files
archived-php-src/ext/standard/tests/file/fopen_unlink.phpt
T
Anatol Belski 17d621e7d3 Allow delete-sharing mode for CreateFile by default
This effectively allows a UNIX like semantics for deleting files
with an open handle. Some OS related limitations still persist,
but the Windows 95 times can be considered as definitely over.
2017-12-08 18:14:20 +01:00

35 lines
555 B
PHP

--TEST--
Test fopen() function : check fopen()ed descriptor is usable after the fs object is removed
--FILE--
<?php
var_dump(
$p = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'tututu',
$f = fopen($p, 'w+'),
unlink($p),
file_exists($p),
fwrite($f, 'hello'),
fseek($f, 0),
fread($f, 16),
fwrite($f, 'world'),
fseek($f, 0),
fread($f, 16),
fclose($f)
);
?>
===DONE===
--EXPECTF--
string(%d) "%stututu"
resource(%s) of type (Unknown)
bool(true)
bool(false)
int(5)
int(0)
string(5) "hello"
int(5)
int(0)
string(10) "helloworld"
bool(true)
===DONE===