目录

PHP is_uploaded_file() 函数

❮ PHP 文件系统参考

示例

检查指定文件名是否通过HTTP POST上传:

<?php
$file = "test.txt";
if(is_uploaded_file($file)) {
  echo ("$file is uploaded via HTTP POST");
} else {
  echo ("$file is not uploaded via HTTP POST");
}
?>

上面代码的输出可能是:

test.txt is not uploaded via HTTP POST


定义和用法

is_uploaded_file() 函数检查指定的文件是否通过 HTTP POST 上传。

语法

is_uploaded_file( file)

参数值

Parameter Description
file Required. Specifies the path to the file to check


技术细节

返回值: 如果文件通过 HTTP POST 上传则为 TRUE,如果失败则为 FALSE
PHP 版本: 4.0.3+

❮ PHP 文件系统参考