bug71542.phpt 251 B

1234567891011121314
  1. --TEST--
  2. Bug #71542 (disk_total_space does not work with relative paths)
  3. --FILE--
  4. <?php
  5. $dir = basename(getcwd());
  6. chdir("..");
  7. var_dump(
  8. disk_total_space($dir) !== false,
  9. disk_free_space($dir) !== false
  10. );
  11. ?>
  12. --EXPECT--
  13. bool(true)
  14. bool(true)