fopen_variation1.phpt 220 B

1234567891011121314
  1. --TEST--
  2. fopen() with relative path on a file in the script directory
  3. --FILE--
  4. <?php
  5. $file = basename(__FILE__);
  6. $fd = fopen($file, "r", true);
  7. var_dump($fd);
  8. fclose($fd);
  9. ?>
  10. --EXPECTF--
  11. resource(%d) of type (stream)