1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-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)