fex-team / webuploader

It's a new file uploader solution!
http://fex.baidu.com/webuploader/
BSD 3-Clause "New" or "Revised" License
7.7k stars 2.33k forks source link

webuploader上传之后,PHP如何获取所有的上传完成的路径? #1599

Open kk3318 opened 8 years ago

kk3318 commented 8 years ago

//webuploader提供的案例代码:(上传成功,只是想取出路径存到数据库里,单文件上传可以取出,多文件上传,只能取到一个路径) header ( "Expires: Mon, 26 Jul 2015 02:00:00 GMT" ); header ( "Last-Modified: " . gmdate ( "D, d M Y H:i:s" ) . " GMT" ); header ( "Cache-Control: no-store, no-cache, must-revalidate" ); header ( "Cache-Control: post-check=0, pre-check=0", false ); header ( "Pragma: no-cache" ); if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') { exit; // finish preflight CORS requests here } if ( !empty($_REQUEST[ 'debug' ]) ) { $random = rand(0, intval($_REQUEST[ 'debug' ]) ); if ( $random === 0 ) { header("HTTP/1.0 500 Internal Server Error"); exit; } } @set_time_limit(5 * 60); $targetDir = 'upload_tmp'; $uploadDir = 'upload'; $cleanupTargetDir = true; // Remove old files $maxFileAge = 5 * 3600; // Temp file age in seconds if (!file_exists($targetDir)) { @mkdir($targetDir); }

if (!file_exists($uploadDir)) { @mkdir($uploadDir); } if (isset($_REQUEST["name"])) { $fileName = $_REQUEST["name"]; } elseif (!empty($_FILES)) { $fileName = $FILES["file"]["name"]; } else { $fileName = uniqid("file"); } $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"}'); } while (($file = readdir($dir)) !== false) { $tmpfilePath = $targetDir . DIRECTORYSEPARATOR . $file; if ($tmpfilePath == "{$filePath}{$chunk}.part" || $tmpfilePath == "{$filePath}_{$chunk}.parttmp") { continue; } 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 ( !fileexists("{$filePath}{$index}.part") ) { $done = false; break; } } if ( $done ) { if (!$out = @fopen($uploadPath, "wb")) { die('{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}'); } if ( flock($out, LOCKEX) ) { 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);
$arr=array();
$arr[]=$uploadPath;//路径;

// 多文件上传时,数组里也只有一个文件的路径。 //如何取得上传了每个文件的路径? //求解。。。。 }

windqyoung commented 8 years ago

发这些乱七八糟的代码作啥? PHP接收文件就看$_FIELS, 里面有就有, 没有就是没有了.