summaryrefslogtreecommitdiff
path: root/ext/standard/tests/directory/directory_constants-win32.phpt
blob: 6a9a066d64710d77946e27b8c3c27241b8d47a76 (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.. only for Windows');
}
?>
--FILE--
<?php

echo DIRECTORY_SEPARATOR;

echo "\n";

echo PATH_SEPARATOR;

echo "\n";

echo "done";

?>
--EXPECT--
\
;
done