萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> 超簡單的php文件上傳程序

超簡單的php文件上傳程序

本文章提供一款簡單的php文件上傳程序,很簡單就是利用了move_uploaded_file把文件上傳到與你php 同一目錄的下面哦。  代碼如下 復制代碼

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>超簡單的php文件上傳程序</title>
</head>

<body>
<form id="form1" name="form1" enctype="multipart/form-data" method="post" action="">
  <label for="filefield"></label>
  <input type="file" name="name" id="filefield" />
  <input type="submit" name="button" id="button" value="開始上傳文件" />
</form>
</body>
</html>

<?
//文件上傳

 代碼如下 復制代碼 if($_files )
{
 upfiles($_files,'./');
}
function upfiles($files,$path){
 global $nowtimestamp;
 $exname=strtolower(substr($files['name'],(strrpos($files['name'],'.')+1)));
 $i=1;
   if (!move_uploaded_file($files['tmp_name'], $path.$nowtimestamp.".".$exname)) {
  showmessage("上傳文件失敗,請稍後重試!","?job=add",true);
 }
 return  $path.$nowtimestamp.".".$exname;
}

?>

copyright © 萬盛學電腦網 all rights reserved