summaryrefslogtreecommitdiff
path: root/ext/standard/tests/directory/directory_constants.phpt
blob: f8e143bc137cb811a6a05533712b492f18d95251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
Test that the Directory extension constants are correctly defined.
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
    die('skip.. Not valid for Windows');
}
?>
--FILE--
<?php

echo DIRECTORY_SEPARATOR;

echo "\n";

echo PATH_SEPARATOR;

echo "\n";

echo "done";

?>
--EXPECT--
/
:
done