sys_get_temp_dir Returns directory path used for temporary files


sys_get_temp_dir

(PHP 5 >= 5.2.1)

sys_get_temp_dirReturns directory path used for temporary files

说明

string sys_get_temp_dir ( void )

Returns the path of the directory PHP stores temporary files in by default.

返回值

Returns the path of the temporary directory.

范例

Example #1 sys_get_temp_dir() example

<?php
// Create a temporary file in the temporary 
// files directory using sys_get_temp_dir()
$temp_file tempnam(sys_get_temp_dir(), 'Tux');

echo 
$temp_file;
?>

以上例程的输出类似于:

C:WindowsTempTuxA318.tmp

参见

  • tmpfile() - 建立一个临时文件
  • tempnam() - 建立一个具有唯一文件名的文件


«  sys_getloadavg
» tan
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3