1 Star 0 Fork 34

kong/fcup

forked from 封尘/fcup 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
file.php 911 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
* 接受处理上传文件
* author:lovefc
*/
header("Content-type: text/html; charset=utf-8");
$file = isset($_FILES['file_data']) ? $_FILES['file_data']:null; //分段的文件
$name = isset($_POST['file_name']) ? './upload/'.$_POST['file_name']:null; //要保存的文件名
$total = isset($_POST['file_total']) ? $_POST['file_total']:0; //总片数
$index = isset($_POST['file_index']) ? $_POST['file_index']:0; //当前片数
if(!$file || !$name){
echo 'failed';
die();
}
if ($file['error'] == 0) {
//检测文件是否存在
if (!file_exists($name)) {
if (!move_uploaded_file($file['tmp_name'], $name)) {
echo 'success';
}
} else {
$content = file_get_contents($file['tmp_name']);
if (!file_put_contents($name, $content, FILE_APPEND)) {
echo 'failed';
}
echo 'success';
}
} else {
echo 'failed';
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/kingkongtown/fcup.git
git@gitee.com:kingkongtown/fcup.git
kingkongtown
fcup
fcup
master

搜索帮助