blob: 26fa9d9c5c7b15528f4af4a30afe4d6e948a889a (
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 !== "Windows")
die('skip Run only on Windows');
?>
--FILE--
<?php echo sys_get_temp_dir(); ?>
--EXPECT--
C:\\Windows
|