summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/realpath_basic2.phpt
blob: 87fc8baaa43a28df7071f719beede9365509ace2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
realpath() with relative directory
--FILE--
<?php

var_dump(realpath('.') == realpath(getcwd()));
chdir('..');
var_dump(realpath('.') == realpath(getcwd()));

?>
--EXPECT--
bool(true)
bool(true)