1234567891011121314 |
- --TEST--
- Req #60524 (Specify temporary directory)
- --INI--
- sys_temp_dir=/path/to/temp/dir
- --SKIPIF--
- <?php
- if (substr(PHP_OS, 0, 3) == 'WIN') {
- die('skip non-windows only test');
- }
- ?>
- --FILE--
- <?php echo sys_get_temp_dir(); ?>
- --EXPECT--
- /path/to/temp/dir
|