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