realpath_basic2.phpt 204 B

12345678910111213
  1. --TEST--
  2. realpath() with relative directory
  3. --FILE--
  4. <?php
  5. var_dump(realpath('.') == realpath(getcwd()));
  6. chdir('..');
  7. var_dump(realpath('.') == realpath(getcwd()));
  8. ?>
  9. --EXPECT--
  10. bool(true)
  11. bool(true)