码迷,mamicode.com
首页 >  
搜索关键字:文件上传类    ( 75个结果
PHP文件上传类(页面和调用部分)
<!--upform.html内容--> <form action="upload.php" method="post" enctype="multipart/form-data" > name: <input type="text" name="username" value="" /><br> ...
分类:Web程序   时间:2016-04-01 21:56:11    阅读次数:136
文件上传类
<?php /** file: fileupload.class.php 文件上传类FileUpload 本类的实例对象用于处理上传文件,可以上传一个文件,也可同时处理多个文件上传 */ class FileUpload { private $path = "./uploads"; //上传文件保存 ...
分类:Web程序   时间:2016-04-01 21:55:49    阅读次数:234
struts2之限制文件上传类型
FileUploadInterceptor中定义了setAllowedExtensions(String)和setAllowedTypes(String)两种方法来限制文件上传类型 1、setAllowedExtensions(String)设置允许上传的文件后缀名, setAllowedTypes
分类:Web程序   时间:2016-03-16 18:46:42    阅读次数:153
ThinkPHP - 文件上传
获取上传类 ThinkPHP的扩展中提供了文件上传类库UploadFile,可以在在http://www.thinkphp.cn/extend/224.html下载,或者下载官方的完整扩展包(http://www.thinkphp.cn/down/253.html)里面也已经包含上传扩展类了。如果是
分类:Web程序   时间:2016-02-04 00:19:09    阅读次数:253
curl文件上传类
getExt($_FILES["path"]["name"]); $svaePath="/www/znm/images/"; $result=$tool->uploadFile($file,$ext,$svaePath); $result= json_decode($r...
分类:Web程序   时间:2015-12-23 12:42:09    阅读次数:327
ajax结合文件上传类进行多文件的单个上传
今天做项目的时候碰见一个问题:之前一个同事离职之前做了一个网站,有一个上传商品详细图片的功能,当时已经完成,但是由于后期程序的有更改以及更改的程序员的水平也是参差不齐,最后导致程序bug很多,由于当时用的是一个框架,最终也没找到说明文档,后来我就重新写了一个结合ajax上..
分类:Web程序   时间:2015-11-13 23:42:42    阅读次数:503
PHP基础------文件上传类
gou.jpg// [type] => image/jpeg// [tmp_name] => D:\wamp\tmp\php311F.tmp// [error] => 0// [size] => 9488//)class upLoad{ private $_arr; ...
分类:Web程序   时间:2015-09-20 20:43:51    阅读次数:141
文件上传类
有自动生成路径的方法,自动生成名字的方法,上传的方法'无错', 1=>'上传文件超出系统限制', 2=>'上传文件大小超出网页表单页面', 3=>'文件只有部分被上传', 4=>'没有文件被上传', 6=>'找不到临时文件夹', 7=>'文件写入失败', 8=>'不允许的文件后缀', ...
分类:Web程序   时间:2015-09-04 21:10:52    阅读次数:198
PHP多文件上传类
setSavepath($savePath); $this->setFileformat($fileFormat); $this->setMaxsize($maxSize); $this->setOverwrite($overwrite); $...
分类:Web程序   时间:2015-08-13 11:57:58    阅读次数:149
单文件上传与多文件上传的文件上传类
1、单文件上传form.html upload.phprequire "FileUpload.class.php"; $up=new FileUpload(array('isRandName'=>true,'allowType'=>array('jpg', 'doc',...
分类:Web程序   时间:2015-08-08 16:21:50    阅读次数:126
75条   上一页 1 ... 4 5 6 7 8 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!