1--TEST-- 2Req #60524 (Specify temporary directory) 3--INI-- 4sys_temp_dir=/path/to/temp/dir 5--SKIPIF-- 6<?php 7if(PHP_OS_FAMILY === "Windows") { 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