首页 > 开发 > PHP > 正文

让你同时上传 1000 个文件

2024-05-04 22:59:40
字体:
来源:转载
供稿:网友

预备知识:javascript, php(少量)/perl(少量)!
测试环境:windows2000 + iis5 + php (win98 + pws + php3 失败,估计是配置出了问题)
目录结构:
/wwwroot/cgi-bin/fileup.php (文件接收)
/wwwroot/www/test/phpfileup.htm (文件提交)
/wwwroot/www/test/tmp/ (默认保存目录) 
 

前言:文件上传,简单又麻烦。下面是上传文件的提交页面,利用该页面你不仅可以生成 1000 个上传文件框(实际是任意多个 0~n ),而且可分别指出它们的保存路径。
提交页面的文件输入框为命名为: file0,file1,...file100,...filen
提交页面的文件路径框为命名为: path0,path1,...path100,...pathn
由于页面的生成非常简单,所以就不在此多解释了,用 javascript 定义了两个函数,check() 用于提交页面,create()用于生成文件上传框。如果你有什么更好的建议或有什么疑问请 email: [email protected]

phpfileup.htm
--------------------------------------------------------
<html>
<head>
<title></title>
<style>
.lbtn {font-family:verdana;font-size:10.5pt;}
.ist {font-family:verdana;font-size:14.8px;size:400}
</style>

<script language="javascript">
function check(){
document.frm1.submit();
document.body.innerhtml="uploading please wait!";
}

var i=0;
function create(){
var sfrm = document.frm1.innerhtml;
var icnt = cnt.value;
for(j=0;j<icnt;j++)
{
sfrm = sfrm + "请选择文件 "+i+" <input type=file name='file"+i+"' class=ist>";
sfrm = sfrm + " 路径:<input type=text name='path"+i+"' value='../www/test/tmp/' class=ist>";
sfrm = sfrm + "<br>";
i++;
}
document.frm1.innerhtml = sfrm;
document.frm1.cnt.value=i;
}

</script>

</head>
<body class=lbtn >
请输入要上传文件的数量: <input type=text name=cnt value="10" class=ist onchange="document.frm1.cnt.value=this.value;">
<input type=button name=bt1 value="生成上传文件框" class=lbtn>
<input type=button name=bt1 value="上传" class=lbtn>
<input type=button name=bt1 value="清除" class=lbtn>

<form name=frm1 method="post" enctype="multipart/form-data" action="../../cgi-bin/fileup.php">
<input type=hidden name=cnt value="20" class=ist>
</form>

<input type=button name=bt1 value="上传" class=lbtn>
<input type=button name=bt1 value="清除" class=lbtn>
</body>
</html>
文件提交页面既已生成,下面任务就很明确了:将提交的文件内容保存到服务器上。

 

下面我们用两种方法来实现这个功能:

1. 用 php 来保存:
我们先定义一个文件保存函数 fup() 它有两个参数:
$filename: 文件内容
$fname: 文件名(包含路径)
剩下的就是写一个循环将文件依次写入服务器。这里要简单说明一下:
php 对于上传文件的处理是这样的:如果提交的文件框我为 file0, 那么提交给 php 的文件内容保存在变量 $file0 中,而文件名则保存在 $file0_name 中。这样在这个循环中我要做的就是将提交页面提交的内容分解出来,实现过程请看下面的代码。

fileup.php
----------------------------------------------------------------------
<?
function fup($filename,$fname)
{ if($filename != "none") {
copy($filename,$fname);
unlink($filename);
}
}

for($i=0;$i<$cnt;$i++)
{
$ffnn="file".$i;
$ffnnname=$ffnn."_name";
$ffpath="path".$i;

//print $$ffnn;
print $$ffnnname;
print "<br>";

fup($$ffnn,$$ffpath.$$ffnnname); //"../www/test/tmp/"
}
?>
----------------------------------------------------------------------

2. 用 perl 来保存:
它们实现的原理完全一样,在此不多说,请看代码:

fileup.cgi(fileup.pl)
----------------------------------------------------------------------
#!/usr/bin/perl

use cgi qw/:standard/;

if ($env{'content_type'} !~ /multipart/form-data/) {
print "cache-control: no-cachenpragma: no-cachen" .
"content-type: text/htmlnn" .
"<html><body>your web browser cannot upload files. sorry.</body></html>";
exit 0;
}


$cntfile=param('cnt');
print header;
print start_html;
#print "receiving please wait....";

&g_head;

#$writed = '../www/test/tmp/';

for ($i=0;$i<$cntfile;$i++){
$paramfile = 'file'.$i;
$parampath='path'.$i;

$writed=param($parampath);

&upfile;
&g_body;
}

&g_bott;

#<<<<<<<<<<<<<<<<<<<<<以下为自定义过程<<<<<<<<<<<<<<<<<<<<<<<<<

sub upfile
{
$maxdata = 512000;
# $writed = '../www/test/tmp/';


$strrfname=reverse $xfile;
$intindex=index($strrfname,'/');
$strnetfname=substr($strrfname,0,$intindex);
$strnetfname=scalar reverse $strnetfname;


if((stat $xfile)[7]>$maxdata){
print "status: 411 size not allowedn" .
"content-type: text/htmlnallow: postnn" .
"<html><head><title>411 411 size not allowed</title></head><body><h1> you got big problem. try again.</h1></body></html>n";
exit 0;
} binmode $xfile;
use file::copy;
copy($xfile,$writed.$strnetfname);
}

 

sub g_head{
print '<table border=1 align=center>';
print '<tr><td colspan=3 align=center>文件上传结果(upload result)</td></tr>';
print '<tr align=center>';
print ' <td>sourcefile:</td>';
print ' <td>destfile:</td>';
print ' <td>upload</td>';
print '</tr>';
}

sub g_body{
print '<tr>';
print ' <td>'.$xfile .'</td>';
print ' <td>'.$writed.$strnetfname.'</td>';
print ' <td>ok!</td>';
print '</tr>';
}

sub g_bott{
print '</table>';
}

上一篇:Db_mssql_class

下一篇:自动生成月历代码

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表