资源简介
切片分段上传
代码片段和文件信息
/**
* 此页面用来协助 IE6/7 预览图片,因为 IE 6/7 不支持 base64
*/
$DIR = ‘preview‘;
// Create target dir
if (!file_exists($DIR)) {
@mkdir($DIR);
}
$cleanupTargetDir = true; // Remove old files
$maxFileAge = 5 * 3600; // Temp file age in seconds
if ($cleanupTargetDir) {
if (!is_dir($DIR) || !$dir = opendir($DIR)) {
die(‘{“jsonrpc“ : “2.0“ “error“ : {“code“: 100 “message“: “Failed to open temp directory.“} “id“ : “id“}‘);
}
while (($file = readdir($dir)) !== false) {
$tmpfilePath = $DIR . DIRECTORY_SEPARATOR . $file;
// Remove temp file if it is older than the max age and is not the current file
if (@filemtime($tmpfilePath) < time() - $maxFileAge) {
@unlink($tmpfilePath);
}
}
closedir($dir);
}
$src = file_get_content
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-10-09 14:58 sc\
目录 0 2019-08-02 13:07 sc\css\
文件 7802 2016-07-16 18:08 sc\css\st
文件 515 2014-09-22 21:30 sc\css\webuploader.css
目录 0 2019-08-02 13:07 sc\images\
文件 2851 2014-09-22 06:31 sc\images\bg.png
文件 2678 2014-09-22 06:31 sc\images\icons.png
文件 1672 2014-09-22 06:31 sc\images\image.png
文件 1269 2014-09-22 06:31 sc\images\progress.png
文件 1621 2014-09-22 06:31 sc\images\success.png
文件 3161 2019-09-27 14:46 sc\index.html
目录 0 2019-08-06 18:18 sc\js\
文件 143099 2014-07-16 13:18 sc\js\Uploader.swf
文件 93107 2019-03-26 18:30 sc\js\jquery.min.js
文件 20266 2019-08-06 18:18 sc\js\upload.js
文件 71514 2014-09-22 21:30 sc\js\webuploader.min.js
文件 1834 2014-09-22 06:31 sc\preview.php
目录 0 2019-08-02 13:07 sc\uploads\
目录 0 2019-10-29 19:22 sc\uploads\file_material\
目录 0 2019-10-29 19:22 sc\uploads\file_material_tmp\
文件 5132 2019-08-02 13:21 sc\uploads.php
相关资源
- thinkphp使用mpdf导出html为pdf文件
- ultraedit64破解版
- thinkphp5 + ajax 使用formdata提交数据包括
- 在线作业系统
- php版本-179上传-轮询服务+网站端.zip
- 仿其他论坛做的UG10.0角色文件
- php+MVC思想+Smarty+MYSQL后台管理系统(数
- 头像上传裁剪整合php
- PHP实现文件上传,及文件读写
- php文件读写与上传
- php文件管理系统-源码
- unity通过Php保存图片
- php5.6 ioncube解密文件
- mysqlbinlog.exe文件win 7mysql 5.6下可用
- 抽奖平台前台开发前后端最终源码实
- JS+PHP上传图片,裁切
- 一个php文件完成支付宝所有支付
- Erphpdown插件v9.5.4包含前端等文件[12月
- 用jquery实现ajax上传文件php版.zip
- CI框架中上传图片与视频
- Tp3.2上传图片Upload文件
- ajax+php上传文件源码
- PHP实现多文件图片上传服务器、数据
- php_sqlsrv_54/55/56_ts.dll等文件
- php 文件管理系统 代码
- php 文件管理系统代码php 文件管理系统
- JSSDK分享文件(php)
- 一个有效的phpmailer使用带上传附件发
- jquery.form.js + php ajax提交,包含图片文
- 网站设计带数据库
评论
共有 条评论