
| Path : /usr/src/php/ext/standard/tests/file/ |
| Current File : //usr/src/php/ext/standard/tests/file/realpath_basic2.phpt |
--TEST--
realpath() with relative directory
--FILE--
<?php
var_dump(realpath('.') == realpath(getcwd()));
chdir('..');
var_dump(realpath('.') == realpath(getcwd()));
?>
--EXPECT--
bool(true)
bool(true)