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