tp5 切片上传及删除文件

本文介绍了一种实现视频分片上传的方法,并提供了一个删除文件的实用函数。该方法适用于ThinkPHP 5.1框架,通过在公共文件中定义函数来实现文件的分片上传与合并。同时,还提供了清理旧文件的功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

此方法写入公共文件(tp5.1 为例,放在common.php)
控制器层调用
附带删除文件

视频分片上传


function upload_file()
{
    $targetDir = '';   //切片保留路径
    $uploadDir = '';//最终上传路径

    $cleanupTargetDir = true; // Remove old files
    $maxFileAge = 5 * 3600; // Temp file age in seconds

    // Create target dir
    if (!file_exists($targetDir)) {
        @mkdir($targetDir);
    }
    // Create upload dir
    if (!file_exists($uploadDir)) {
        @mkdir($uploadDir);
    }

    // Get a file name
    if (isset($_REQUEST["name"])) {
        $fileName = $_REQUEST["name"];
    } elseif (!empty($_FILES)) {
        $fileName = $_FILES["file"]["name"];
    } else {
        $fileName = uniqid("file_");
    }
    $hz = substr($_FILES['file']['type'],strpos($_FILES['file']['type'],'/')+1,strlen($_FILES['file']['type']));
    $fileName = md5(time().$fileName).".".$hz;
    if(is_file($uploadDir.DIRECTORY_SEPARATOR.$fileName)){
        die('{"code":2,"msg":"此文件名已存在"}');
    }
    //拼接路径
    $filePath = $targetDir . DIRECTORY_SEPARATOR . $fileName;
    $uploadPath = $uploadDir . DIRECTORY_SEPARATOR . $fileName;

    //可能已启用分块
    $chunk = isset($_REQUEST["chunk"]) ? intval($_REQUEST["chunk"]) : 0;
    $chunks = isset($_REQUEST["chunks"]) ? intval($_REQUEST["chunks"]) : 1;

    //删除旧的临时文件
    if ($cleanupTargetDir) {
        if (!is_dir($targetDir) || !$dir = opendir($targetDir)) {
            die('{"jsonrpc" : "2.0", "error" : {"code": 100, "message": "Failed to open temp directory."}, "id" : "id","uploadPath":$uploadPath}');
        }
        while (($file = readdir($dir)) !== false) {
            $tmpfilePath = $targetDir . DIRECTORY_SEPARATOR . $file;

            // If temp file is current file proceed to the next
            if ($tmpfilePath == "{$filePath}_{$chunk}.part" || $tmpfilePath == "{$filePath}_{$chunk}.parttmp") {
                continue;
            }

            // Remove temp file if it is older than the max age and is not the current file
            if (preg_match('/\.(part|parttmp)$/', $file) && (@filemtime($tmpfilePath) < time() - $maxFileAge)) {
                @unlink($tmpfilePath);
            }
        }
        closedir($dir);
    }

    //打开临时文件
    if (!$out = @fopen("{$filePath}_{$chunk}.parttmp", "wb")) {
        die('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
    }
    if (!empty($_FILES)) {
        if ($_FILES["file"]["error"] || !is_uploaded_file($_FILES["file"]["tmp_name"])) {
            die('{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "Failed to move uploaded file."}, "id" : "id"}');
        }
        // Read binary input stream and append it to temp file
        if (!$in = @fopen($_FILES["file"]["tmp_name"], "rb")) {
            die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
        }
    } else {
        if (!$in = @fopen("php://input", "rb")) {
            die('{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}');
        }
    }

    while ($buff = fread($in, 4096)) {
        fwrite($out, $buff);
    }

    @fclose($out);
    @fclose($in);

    rename("{$filePath}_{$chunk}.parttmp", "{$filePath}_{$chunk}.part");

    $index = 0;
    $done = true;
    for( $index = 0; $index < $chunks; $index++ ) {
        if ( !file_exists("{$filePath}_{$index}.part") ) {
            $done = false;
            break;
        }
    }
    if ( $done ) {
        if (!$out = @fopen($uploadPath, "wb")) {
            // echo '1';
            die('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}');
        }

        if ( flock($out, LOCK_EX) ) {
            for( $index = 0; $index < $chunks; $index++ ) {
                if (!$in = @fopen("{$filePath}_{$index}.part", "rb")) {
                    break;
                }

                while ($buff = fread($in, 4096)) {
                    fwrite($out, $buff);
                }

                @fclose($in);
                @unlink("{$filePath}_{$index}.part");
            }

            flock($out, LOCK_UN);
        }
        @fclose($out);
    }
	/* 自定义出返回的数据
    return [
        'fileName'=>$fileName,
    ];
    */
}

删除文件

// $path = '20210513/a.jpg'
function delFiles($path){
    $sysPath = '/public/.../../uploads'; //存放的路径
    $dir = substr($path, 0, strpos($path, DIRECTORY_SEPARATOR)); //文件夹
    //删除指定文件
    if (file_exists($sysPath . $path)) {
        if (is_file($sysPath . $path)) {
            @unlink($sysPath . $path);
        }
    }
    //如果这个文件的目录为空就删除改目录
    if (is_dir($sysPath . $dir)) {
        $a = array_diff(scandir($sysPath . $dir), array('..', '.'));
        if (empty($a)) {
            @rmdir($sysPath. $dir);
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值