1 2 3 4 5 6 7 8 9 10 11 12 13 14
--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)