xref: /PHP-5.5/tests/basic/req60524.phpt (revision 4941e3fe)
1--TEST--
2Req #60524 (Specify temporary directory)
3--INI--
4sys_temp_dir=/path/to/temp/dir
5--SKIPIF--
6<?php
7if (substr(PHP_OS, 0, 3) == 'WIN') {
8    die('skip non-windows only test');
9}
10?>
11--FILE--
12<?php echo sys_get_temp_dir(); ?>
13--EXPECT--
14/path/to/temp/dir
15