当前位置:首页 > PHP教程 > php上传下载 > 列表

php最简单文件上传代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-05-21 09:56:33 浏览: 评论:0 

我们实现最简单的文件上传功能,只要利用php自带的move_uploaded_file函数就可以方便实现.

  1. <?php 
  2.      $tmp_filename = $_FILES['myupload']['tmp_name']; 
  3.      if(!move_uploaded_file($tmp_filename,"/path/to/dest/{$_FILES['myupload']['name']}")) { 
  4.           echo "An error has occurred moving the uploaded file.<BR>"
  5.           echo "Please ensure that if safe_mode is on that the " . "UID PHP is using matches the file."
  6.           exit
  7.      } else { 
  8.           echo "The file has been successfully uploaded!"
  9.      } 
  10. ?> 

Tags: php 文件上传

分享到: