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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。