-
CI框架上传类改写,支持多附件上传
CI框架上传类改写,
原来的程序只支持一个附件上传,并不支持控件数组上传。
现已修改支持多附件上传。将该文件放到自己程序目录中的libraries文件夹下。
调用如下:
// 附件上传处理
$folder = date("Ym");
$upload_dir = APPPATH . "/app/upload/".$folder;
$config["upload_path"] = $upload_dir;
$config["allowed_types"] = "gif|jpg|png|txt|doc|docx|xls|xlsx|ppt|pptx|pdf";
$config["max_size"] = "5120";
$config["max_width"] = "0";
$config["max_height"] = "0";
$config["max_filename"] = "0";
$config["overwrite"] = false;
$config["encrypt_name"] = true;
$config["remove_spaces"] = true;
$this->load->library("upload", $config);
$field_name = "att";
if (!$this->upload->do_upload($field_name, true))
{
// 出错
$error = array("error" => $this->upload->display_errors());
} else {
// 正
- 2022-05-05 09:14:31下载
- 积分:1
-
重载过的cfile 读取大于2G的文件
重载过的cfile 读取大于2G的文件-Heavy-duty off CFile read a document larger than 2G
- 2023-03-27 02:05:03下载
- 积分:1
-
It s a portscan example in multithread mode
It s a portscan example in multithread mode
- 2022-08-20 14:52:32下载
- 积分:1
-
可以嵌套子目录的字符串替换,文件名替换
可以嵌套子目录的字符串替换,文件名替换 -can be nested subdirectories string replacement, File Name Replacement
- 2022-06-12 20:19:20下载
- 积分:1
-
注册表的相关操作(VB)
注册表的相关操作(VB)-operating about registry(vb)
- 2022-01-29 01:32:01下载
- 积分:1
-
一个接口齐全,功能强大的DBF类,由DELPHI实现.
一个接口齐全,功能强大的DBF类,由DELPHI实现.-a complete interface, powerful DBF category, DELPHI.
- 2022-01-30 21:02:59下载
- 积分:1
-
一个基于ucos的文件管理系统 可以支持cf卡 硬盘等存储器 但是对于单独的flash芯片还需要自己编写硬件的底层驱动...
一个基于ucos的文件管理系统 可以支持cf卡 硬盘等存储器 但是对于单独的flash芯片还需要自己编写硬件的底层驱动-based document management system can support cf memory card drives, etc. But for a separate flash chip also need to prepare themselves to the bottom of the hardware drivers
- 2022-02-02 09:25:00下载
- 积分:1
-
文本编辑器
基于命令行的文本编辑器
功能:1、 打开文件
2、 保存文件
3、 能够对文件进行查找
4、 能够对文件进行替换
5、 能够对文件进行删除
- 2022-04-12 23:30:30下载
- 积分:1
-
保存日志,以备后续问题的查找,方便技术人员的沟通
保存日志,以备后续问题的查找,方便技术人员的沟通-To save the log to prepare for follow-up questions to find, to facilitate communication between technical staff
- 2022-05-27 15:26:49下载
- 积分:1
-
md5编码类,可查文件和字符串的md5编码
md5编码类,可查文件和字符串的md5编码-md5 encode
- 2023-06-23 15:15:03下载
- 积分:1