mirror of
https://github.com/php/php-src.git
synced 2026-04-14 19:41:05 +02:00
14 lines
231 B
PHP
14 lines
231 B
PHP
--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
|