• 大小: 0.21M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: PHP
  • 标签: 文件上传  文件  上传  

资源简介

切片分段上传

资源截图

代码片段和文件信息

/**
 * 此页面用来协助 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\style.css
     文件         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

评论

共有 条评论