Check whether the specified filename is uploaded via 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");
}
?>
The output of the code above could be:
test.txt is not uploaded via HTTP POST
The is_uploaded_file() function checks whether the specified file is uploaded via HTTP POST.
is_uploaded_file(
file)
Parameter | Description |
---|---|
file | Required. Specifies the path to the file to check |
Return Value: | TRUE if the file is uploaded via HTTP POST, FALSE on failure |
---|---|
PHP Version: | 4.0.3+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!