欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

【PHP】检查文件上传表单是否有选择文件

程序员文章站 2022-06-02 23:38:50
...
  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. ?>
复制代码