这个是我昨晚写的一个超简单的上传类,只要 $up->upload($_FILES['imgfile']); 即可。 一条语句搞定上传
送给所有草根的个人站长
上传文件:
up.php
<?php
//验证
if(empty($_COOKIE['login'])) {
die('index');
}
//加载类
include_once("_inc/class_uppic.php");
//上传
if(!empty($_GET['action']) && $_GET['action'] == "upload"){
$up->upload($_FILES['imgfile']);
echo "上传成功!文件名:{$up->new_url} <a href=?yes>重新上传</a>";
}
?>
<form action="?action=upload" method="post" enctype="multipart/form-data">
图片来源:<input type="file" name="imgfile" style="width:200px;height:25px;">
<input type="submit" name="submit" value="上传" style="width:50px;height:25px;">
//================分割线==============
类文件:
class_uppic.php
<?php
/*
power by jtxxol.com
2011-06-20
*/
$up=new class_uppic;
class class_uppic{
function __construct(){
//保存目录
$this->save_path='/uploadfile/';
//文件链接
$this->save_url='/uploadfile/';
//允许大小 300k
$this->allow_size=300000;
//允许类型
$this->allow_ext='jpg,jpeg,gif,png';
//新文件名
$this->new_name=date("YmdHis").rand(10,99);
//初始化错误提示
$this->err='';
}
//上传
function upload($arr){
$this->file=$arr;
//初始化设置
$this->allow_ext=explode(',',$this->allow_ext);
$this->save_path=$_SERVER['DOCUMENT_ROOT'].$this->save_path.date('Y-m').'/';
$this->save_url=$this->save_url.date('Y-m').'/';
//获得扩展名
$temp_arr = explode(".", $this->file['name']);
$file_ext = array_pop($temp_arr);
$file_ext = trim(strtolower($file_ext));
//检查类型
if(!in_array($file_ext,$this->allow_ext)){
$this->err="上传图片类型错误";
}
//检查大小
if($this->file['size']>$this->allow_size){
$this->err="文件超出限制大小";
}
//递归建立目录
$this->creatdir($this->save_path);
//上传后的路径
$this->new_path=$this->save_path.$this->new_name.'.'.$file_ext;
$this->new_url =$this->save_url.$this->new_name.'.'.$file_ext;
//检查错误
if (!empty($this->err)){
$this->show($this->err);
}
//上传
if( !move_uploaded_file($this->file['tmp_name'],$this->new_path) ) {
$this->err= "上传文件出错";
$this->show($this->err);
}
}
//建立目录
function creatdir($Dir)
{
if (is_dir($Dir))
return true;
if (@ mkdir($Dir,0777))
return true;
if (!$this->creatdir(dirname($Dir)))
return false;
return mkdir($Dir,0777);
}
//错误提示
function show($errorstr){
echo "<script language=javascript>alert('$errorstr');location='javascript:history.go(-1);';</script>";
exit();
}
}
?>
现在做网站的人是越来越多,各种行业的网站都蜂拥而上,利用网站成就了自己一番事业的人很多,如网易、新浪这些大型门户网站,一路走来,就成功了,这是很多站长都渴望的结果。
企业网站建设解决方案 营销型网站建设解决方案 行业门户网站建设解决方案 外贸网站解建设决方案 品牌形象网站建设解决方案 购物商城网站建设解决方案 政府网站建设解决方案 手机网站建设解决方案 教育培训网站建设解决方案 珠宝高端奢饰品网站建设解决方案 房地产、地产项目网站建设解决方案 集团、上市企业网站建设解决方案 数码、电子产品网站建设解决方案 美容、化妆品行业网站建设解决方案
10年专业互联网服务经验 重庆最专业网站团队 资深行业分析策划 B2C营销型网站建设领先者 最前沿视觉设计、研发能力 时刻最新技术领先研发能力 具有完备的项目管理 完善的售后服务体系 深厚的网络运营经验
中技互联一直秉承专业、诚信、服务、进取的价值观,坚持优秀的商业道德,以用户最终价值为导向,向用户提供优质产品和优质服务,从而赢得了用户的信赖。始终以不懈的努力、更高的目标来要求自己。
主营业务:网站建设 | 重庆网站建设 | 重庆网站设计 | 重庆网站制作 | 重庆网页设计 | 重庆网站开发
CopyrightZJCOO technology Co., LTD. All Rights Reserved.
渝ICP 备11003429号