加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
upload.php 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
header("Content-Type:text/html; charset=UTF-8");
$data = array("code" => 1, "message" => "文件上传失败");
//文件上传处理
if ( isset($_FILES['src']) ) {
$localfile = $_FILES['src'];
$filename = md5(time().$localfile['name']).get_extension($localfile['name']);
if ( move_uploaded_file($localfile['tmp_name'], __DIR__."/files/".$filename) ) {
$data["code"] = '000';
$data["message"] = 'files/'.$filename;
}
}
echo json_encode($data);
die();
function get_extension($filename) {
$pos = strrpos($filename, ".");
return substr($filename,$pos);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化