php-src/ext/standard/tests/file/fopen_variation1.phpt
2008-03-19 17:25:47 +00:00

15 lines
220 B
PHP

--TEST--
fopen() with relative path on a file in the script directory
--FILE--
<?php
$file = basename(__FILE__);
$fd = fopen($file, "r", true);
var_dump($fd);
fclose($fd);
?>
--EXPECTF--
resource(%d) of type (stream)