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

超简单的php文件上传程序

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-05 13:04:31 浏览: 评论:0 

本文章提供一款简单的php文件上传程序,很简单就是利用了move_uploaded_file把文件上传到与你php 同一目录的下面.

PHP实例代码如下:

  1. <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="content-type" content="text/html; charset=gb2312" /> 
  5. <title>超简单的php文件上传程序</title> 
  6. </head> 
  7.  
  8. <body> 
  9. <form id="form1" name="form1" enctype="multipart/form-data" method="post" action=""
  10.   <label for="filefield"></label> 
  11.   <input type="file" name="name" id="filefield" /> 
  12.   <input type="submit" name="button" id="button" value="开始上传文件" /> 
  13. </form> 
  14. </body> 
  15. </html> 
  16.  
  17.  
  18. <? 
  19. //文件上传 
  20.  
  21.  代码如下 复制代码  
  22. if($_files ) 
  23.  upfiles($_files,'./'); 
  24. function upfiles($files,$path){ 
  25.  global $nowtimestamp
  26.  $exname=strtolower(substr($files['name'],(strrpos($files['name'],'.')+1))); 
  27.  $i=1; 
  28.    if (!move_uploaded_file($files['tmp_name'], $path.$nowtimestamp.".".$exname)) {  
  29.   showmessage("上传文件失败,请稍后重试!","?job=add",true); 
  30.  } 
  31.  return  $path.$nowtimestamp.".".$exname
  32. ?> 

Tags: 简单 php文件上传

分享到: