php-src/ext/standard/tests/file/realpath_basic2.phpt
2009-08-25 00:22:11 +00:00

14 lines
204 B
PHP

--TEST--
realpath() with relative directory
--FILE--
<?php
var_dump(realpath('.') == realpath(getcwd()));
chdir('..');
var_dump(realpath('.') == realpath(getcwd()));
?>
--EXPECT--
bool(true)
bool(true)