文件/批量文件上传

文件/批量文件上传

一. 文件/批量文件上传

一)单个文件上传

1.单个文件上传代码

<?php// printf(<pre>%s</pre>,print_r($_FILES,true));// 遍历:有多少个文件上传 $imgs =[];foreach($_FILES as $file){ printf(<pre>%s</pre>,print_r($_FILES,true));if($file[error]==0){if(strstr($file[type],/,true)!==image){ $tips =文件类型错误;// echo $tips;continue;}else{//创建目标文件名,只要保证不重名源码网点我wcqh.cn $targetName=uploads/.md5($file[name]).strstr($file[name],.); if(!move_uploaded_file($file[tmp_name],$targetName)){ $tips =文件上传失败;}else{ $imgs[]=$targetName;}}}}?>

2.单个文件上传效果图

二).多个文件上传

1.多个文件上传代码

<?php// printf(<pre>%s</pre>,print_r($_FILES,true));// 遍历:有多少个文件上传 $imgs =[];if(!isset($_FILES[my_pic])){ $tips=源码网点我wcqh.cn有文件上传;}else{foreach($_FILES[my_pic][error]as $key=>$error){if($error==0){ $file =$_FILES[my_pic];if(strstr($file[type][$key],/,true)!==image){ $tips =文件类型错误;// echo $tips;continue;}else{//创建目标文件名,只要保证不重名 $targetName=uploads/.md5($file[name][$key]).strstr($file[name][$key],.);if(!move_uploaded_file($file[t源码网点我wcqh.cnmp_name][$key],$targetName)){ $tips =文件上传失败;}else{ $imgs[]=$targetName;}}} elseif($error==1){}}}?><!DOCTYPE html><htmllang=“en”><head><metacharset=“UTF-8”><metahttp-equiv=“X-UA-Compatible”content=“IE=edge”><metaname=“viewport”content=“width=device-width, initial-scale=1.0”><title>文件上传</title></head><bod源码网点我wcqh.cny><!– 1.action:空,表示提交到当前的页面 2.method:post 3.enctype=”multipart/form-data” –><formaction=“”method=“post”enctype=“multipart/form-data”><fieldset><legend>文件批量上传</legend><inputtype=“file”name=“my_pic[]”multiple><button>上传</button></fieldset></form><?php if(isset($tips)):?><?=$tips?><?php elseif(count($img源码网点我wcqh.cns)>0):?><?php foreach($imgs as $img):?> <img src=”<?=$img?>” width=”200″ /><?php endforeach;?><?php endif ?></body></html>

2.多个文件上传效果图

批改老师:PHPz 批改状态:合格 老师批语:

© 版权声明
THE END
喜欢就支持一下吧
点赞998 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容