php is_uploaded_file函数用于判断指定的文件是否是通过 HTTP POST 上传的,其语法是is_uploaded_file(file),参数file必需,指规定要检查的文件。
php is_uploaded_file函数怎么用?
作用:判断指定的文件是否是通过 HTTP POST 上传的。
语法:
is_uploaded_file(file)
参数:
file必需。规定要检查的文件。
说明:
如果 file 所给出的文件是通过 HTTP POST 上传的则返回 TRUE。
php is_uploaded_file()函数使用示例
<?php $file = "index.txt"; if(is_uploaded_file($file)) { echo "该文件是上传的"; }else{ echo "该文件不是上传的"; } ?>
输出:
该文件不是上传的
Atas ialah kandungan terperinci php is_uploaded_file函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!