一个经典的PHP文件上传类分享(2)
本例的文件上传类FileUpload,即支持单文件上传,也支持多个文件一起向服务器上传,在处理方式上没有区别的,只不过在编写上传标单时,多个文件上传
本例的文件上传类FileUpload,即支持单文件上传,也支持多个文件一起向服务器上传,在处理方式上没有区别的,只不过在编写上传标单时,多个文件上传一定要以数组方式传递给服务器。单个文件上传表单如下所示:
<form action="upload.php" method="post" enctype="multipart/form-data" > name: <input type="text" name="username" value="" /><br> <input type="hidden" name="MAX_FILE_SIZE" value="1000000" /> up pic: <input type="file" name="pic[]" value=""><br> up pic: <input type="file" name="pic[]" value=""><br> up pic: <input type="file" name="pic[]" value=""><br> up pic: <input type="file" name="pic[]" value=""><br> <input type="submit" value="upload" /><br> </form>
- 上一篇:PHP操作文件的一些基本函数使用示例
- 下一篇:php数组查找函数总结
精彩图集
精彩文章






