Home  >  Article  >  Backend Development  >  [PHP] Check whether the file upload form has a selected file

[PHP] Check whether the file upload form has a selected file

WBOY
WBOYOriginal
2016-07-25 09:11:23893browse
  1. if (!is_uploaded_file($HTTP_POST_FILES['upload_file']['tmp_name'])) {
  2. $error = "You must upload a file!";
  3. unlink($HTTP_POST_FILES['upload_file']['tmp_name']);
  4. }
  5. else {
  6. }
  7. ?>
复制代码


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn