is_uploaded_file() 函数可以检查指定的文件是否通过 HTTP POST 上传。如果文件是通过 HTTP POST 上传的,则此函数可以返回 true。
用法
bool is_uploaded_file ( string $filename )
如果 filename 命名的文件已通过 HTTP POST 上传,则此函数可以返回 true。如果对上传的文件所做的任何操作可能会向用户甚至同一系统上的其他用户透露其内容,则这种检查特别有用。
示例
<?php
$file = "/PhpProject/simple.txt";
if(is_uploaded_file($file)) {
echo ("$file is uploaded via HTTP POST");
} else {
echo ("$file is not uploaded via HTTP POST");
}
?>
输出
/PhpProject/simple.txt is not uploaded via HTTP POST
相关用法
- PHP is_uploaded_file()用法及代码示例
- PHP is_uploaded_file( )用法及代码示例
- PHP is_file( )用法及代码示例
- PHP is_link( )用法及代码示例
- PHP is_link()用法及代码示例
- PHP is_subclass_of()用法及代码示例
- PHP is_long()用法及代码示例
- PHP is_iterable()用法及代码示例
- PHP is_float()用法及代码示例
- PHP is_object()用法及代码示例
- PHP is_callable()用法及代码示例
- PHP is_executable()用法及代码示例
- PHP is_dir( )用法及代码示例
- PHP is_dir()用法及代码示例
- PHP is_nan()用法及代码示例
- PHP is_readable( )用法及代码示例
- PHP is_string()用法及代码示例
- PHP is_resource()用法及代码示例
- PHP is_finite()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function is_uploaded_file()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。