-
文本文件(txt)合并:
适合检索多个文本文件时使用(先合并多个文件然后再检索)
简单的TStringList应用举例...
文本文件(txt)合并:
适合检索多个文本文件时使用(先合并多个文件然后再检索)
简单的TStringList应用举例-text (txt) : a suitable text document retrieval over the use of (merging multiple files first and then search), a simple application example TStringList
- 2022-03-24 03:06:51下载
- 积分:1
-
程序运行过程中,鼠标位置的记录与重演
GetCursorPos/SetCursorPos,fwrite/fread...
程序运行过程中,鼠标位置的记录与重演
GetCursorPos/SetCursorPos,fwrite/fread-running process, the position of the mouse and a repeat of the record GetCursorPos/SetCursorPos, fwrite/fread
- 2022-07-01 01:06:38下载
- 积分:1
-
检测一个有向图是否含有回路,并进行拓扑排序
检测一个有向图是否含有回路,并进行拓扑排序-Detection of a directed graph if it contains the loop and carry out topological sort
- 2022-03-18 05:20:28下载
- 积分:1
-
10 into rounded turn into two spaces
10进位整数转2进位-10 into rounded turn into two spaces
- 2022-02-12 17:16:33下载
- 积分:1
-
用二叉树的算法对指定目录下的文件和目录以格式化的方法保存。修改了原程序中的一些bug。...
用二叉树的算法对指定目录下的文件和目录以格式化的方法保存。修改了原程序中的一些bug。
-binary tree algorithm used for the specified directory of files and directories to the formatting preserved. The original amendments to the procedures in some bug.
- 2023-06-22 12:10:03下载
- 积分:1
-
This program checks a folder and copies the specified files to another folder....
This program checks a folder and copies the specified files to another folder.
During this course it writes a log file
- 2023-06-26 21:00:03下载
- 积分:1
-
Documents, online hard to find today, me and paste it in the hope that can help...
文件,网上很难找到,今天我吧它贴出来,希望能帮助大家!
-Documents, online hard to find today, me and paste it in the hope that can help you!
- 2022-05-21 06:56:48下载
- 积分:1
-
云计算,电子邮件
云计算接收大量的关注,这两个在出版物和在用户中,从个人在家给美国政府。然而,它并不总是清楚 定义.1 云计算是一个基于订阅的服务在那里你可以得到网络的存储空间和计算机资源。一种看待云计算要考虑你的经验与电子邮件的方式。您的电子邮件客户端,如果它是雅虎、 Gmail、 Hotmail,等等,照顾房屋所有的硬件和软件支持您的个人电子邮件帐户所必需。当你想要访问您的电子邮件您打开您的 web 浏览器时,请转到电子邮件客户端,并登录。该方程的最重要部分有互联网接入。您的电子邮件不驻留在物理计算机 ;您访问它通过互联网连接,您可以在任何地方访问它。如果你在一次旅行,在工作中或街上越来越咖啡,您可以检查您的电子邮件,只要您有权访问互联网。您的电子邮件是不同的在您的计算机,如字处理程序) 上安装软件。当你创建一个文档,使用文字处理软件时,该文档将保持在你用来使它除非你物理上将其移动的设备上。电子邮件客户端是类似于云计算。除而不是访问只是您的电子邮件,您可以选择哪些信息您有权访问在云内。
- 2022-11-05 08:45:03下载
- 积分:1
-
the sample file for C or C++
the sample file for C or C-the sample file for C or C++
- 2022-01-22 14:08:45下载
- 积分:1
-
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