sys_get_temp_dir() 是一个内置函数,将返回临时文件的目录路径。
用法:
sys_get_temp_dir()
参数:该函数不接受任何参数。
返回值:该函数返回临时目录的路径。
示例 1:这段代码演示了sys_get_temp_dir()函数。
PHP
<?php
// print tmp location
echo sys_get_temp_dir();
?>
输出:
/tmp
示例 2:这是另一个演示的代码 sys_get_temp_dir()函数。
PHP
<?php
$temp_file = tempnam(sys_get_temp_dir(), 'gfg');
echo $temp_file;
?>
输出:
/tmp/gfgluzYqw
参考: https://www.php.net/manual/en/function.sys-get-temp-dir.php
相关用法
- PHP symlink()用法及代码示例
- PHP sin()用法及代码示例
- PHP sqrt()用法及代码示例
- PHP string Implode()用法及代码示例
- PHP string crypt()用法及代码示例
- PHP string join()用法及代码示例
- PHP string lcfirst()用法及代码示例
- PHP string levenshtein()用法及代码示例
- PHP string ltrim()用法及代码示例
- PHP string md5()用法及代码示例
- PHP string md5_file()用法及代码示例
- PHP string money_format()用法及代码示例
- PHP string number_format()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string parse_str()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string quotemeta()用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string similar_text()用法及代码示例
- PHP string str_ireplace()用法及代码示例
- PHP string str_pad()用法及代码示例
- PHP string str_repeat()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP sys_get_temp_dir() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。