blob: 8eb38a528c96f3f495b226044bddec526d3739c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Req #60524 (Specify temporary directory)
--INI--
sys_temp_dir=C:\Windows
--SKIPIF--
<?php
if(PHP_OS_FAMILY !== "WIN")
die('skip Run only on Windows');
?>
--FILE--
<?php echo sys_get_temp_dir(); ?>
--EXPECT--
C:\\Windows
|