程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php多文件上傳代碼實現php多文件上傳功能(1/2)

php多文件上傳代碼實現php多文件上傳功能(1/2)

編輯:關於PHP編程

php多文件上傳代碼實現php多文件上傳功能 本文章利用了php多文件上傳類來實現,並舉例實行php多文件上傳的實例哦,多文件上傳最主要就是關於file的屬性必須以數組形式並且用foreach或for也讀取來一個個用move_uploaded_file把文件上傳到服務器這樣就實現的多文件上傳哦。

php教程多文件上傳代碼實現php多文件上傳功能
本文章利用了php多文件上傳類來實現,並舉例實行php多文件上傳的實例哦,多文件上傳最主要就是關於file的屬性必須以數組形式並且用foreach或for也讀取來一個個用move_uploaded_file把文件上傳到服務器這樣就實現的多文件上傳哦。
*/
?>

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.bKjia.c0m/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>php多文件上傳代碼</title>
</head>

<body>
<form method="post" enctype="multipart/form-data" action="server.php">
<input type="file" name="spec[]">
<input type="file" name="spec[]">


<!--<input type="file" name="spec">
<input type="file" name="manual">-->
<input type="submit">
</form>
</body>
</html>

server.php

<?php
//upload array files
include 'upload.class.php';
$u = new upload('../uploads/product/','spec','group');
print_r($u->getnewname());
echo $u->geterror();
/***********************
 //upload single file
$u = new upload('../www.bKjia.c0m/product/','spec');
print_r($u->getnewname());
$u = new upload('../mb.bKjia.c0m/product/','manual');
print_r($u->getnewname());
echo $u->geterror();
************************/
?>

1 2

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved