最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
简单的php文件上传简单范例
时间:2022-06-24 15:16:51 编辑:袖梨 来源:一聚教程网
一个比较简单的php文件上传范例,可用于要求不高的时候,记录到这里,方便以后要用的时候直接过来复制。
$resume = $_FILES['resumefile'];
if($resume['name']!='')
{
$enableType = array('jpg','png','gif','doc','docx','rtf','pdf'); //支持格式
$maxSize = 1024*1024; //最大允许上传1M的文件
$filePath = 'upload/resume/';
$suffix = end(explode('.', $resume['name'])); //获取文件后缀名
$resumeName = 'resume_'.time().'.'.$suffix;
//大小限制
if($resume['size']>$maxSize)
{
die("");
}
//格式限制
if(!in_array($suffix, $enableType))
{
die("");
}
//上传
if(move_uploaded_file($resume['tmp_name'], $filePath.$resumeName))
{
$attachment = $filePath.$resumeName; //文件名,写入数据库
}
}
相关文章
- 2022史小坑的黑暗料理下载 史小坑的黑暗料理下载链接推荐 09-08
- tplink路由器wdr5620安装步骤详解(tplink路由器wdr5620安装步骤是什么) 09-08
- 金铲铲之战s17选秀神明奖励一览—S17神明奖励表 09-08
- git如何拉取项目分支代码实用指南 09-08
- 富甲一方兑换码最新可用汇总—礼包码永久无过期汇总 09-08
- Git分布式版本控制工具使用完整指南 09-08