当前位置:  编程技术>php
本页文章导读:
    ▪php 文件上传类与图片处理类的实现代码      php实现文件的上传比较简单,如果再有一个高效的php文件上传类,那真是如虎添翼,不想飞都不行。 那么,那么,如果再有一个好用的图片处理类呢,可以缩减图片,可以加水印,是不是更.........
    ▪php文件上传原理深入分析与理解      很多的php 教程中,都会介绍文件上传,众所周知,php文件上传是简单而高效的,今天为大家分析下其原理。 //使用multipart/form-data编码格式 $_FILES系统函数; $_FILES['myFile']['name']文件名称 $_FILES.........
    ▪php 文件上传类(轻便型)      1、php 文件上传类的代码。 <?php /** * 文件上传类 * by http://www. */ class Ftp{ public $off; // 返回操作状态(成功/失败) public $conn_id; // FTP连接 /** * 方法:FTP连接 * @FTP_HOS.........

[1]php 文件上传类与图片处理类的实现代码
    来源: 互联网  发布时间: 2013-12-24

php实现文件的上传比较简单,如果再有一个高效的php文件上传类,那真是如虎添翼,不想飞都不行。
那么,那么,如果再有一个好用的图片处理类呢,可以缩减图片,可以加水印,是不是更爽呢?
小声地告诉你,那是必须的,哈哈。

来看今天的php 教程吧。

1、文件上传类的代码

<?php
/**
* 文件上传类
* by www.
*/
class uploadFile {
public $max_size = '1000000';//设置上传文件大小
public $file_name = 'date';//重命名方式代表以时间命名,其他则使用给予的名称
public $allow_types;//允许上传的文件扩展名,不同文件类型用“|”隔开
public $errmsg = '';//错误信息
public $uploaded = '';//上传后的文件名(包括文件路径)
public $save_path;//上传文件保存路径
private $files;//提交的等待上传文件
private $file_type = array();//文件类型
private $ext = '';//上传文件扩展名
/**
* 构造函数,初始化类
* @access public
* @param string $file_name 上传后的文件名
* @param string $save_path 上传的目标文件夹
*/
public function __construct($save_path = './upload/',$file_name = 'date',$allow_types = '') {
$this->file_name = $file_name;//重命名方式代表以时间命名,其他则使用给予的名称
$this->save_path = (preg_match('/\/$/',$save_path)) ? $save_path : $save_path . '/';
$this->allow_types = $allow_types == '' ? 'jpg|gif|png|zip|rar' : $allow_types;
}
/**
* 上传文件
* @access public
* @param $files 等待上传的文件(表单传来的$_FILES[])
* @return boolean 返回布尔值
*/
public function upload_file($files) {
$name = $files['name'];
$type = $files['type'];
$size = $files['size'];
$tmp_name = $files['tmp_name'];
$error = $files['error'];
switch ($error) {
case 0 : $this->errmsg = '';
break;
case 1 : $this->errmsg = '超过了php.ini中文件大小';
break;
case 2 : $this->errmsg = '超过了MAX_FILE_SIZE 选项指定的文件大小';
break;
case 3 : $this->errmsg = '文件只有部分被上传';
break;
case 4 : $this->errmsg = '没有文件被上传';
break;
case 5 : $this->errmsg = '上传文件大小为0';
break;
default : $this->errmsg = '上传文件失败!';
break;
}
if($error == 0 && is_uploaded_file($tmp_name)) {
//检测文件类型
if($this->check_file_type($name) == FALSE){
return FALSE;
}
//检测文件大小
if($size > $this->max_size){
$this->errmsg = '上传文件<font color=red>'.$name.'</font>太大,最大支持<font color=red>'.ceil($this->max_size/1024).'</font>kb的文件';
return FALSE;
}
$this->set_save_path();//设置文件存放路径
$new_name = $this->file_name != 'date' ? $this->file_name.'.'.$this->ext : date('YmdHis').'.'.$this->ext;//设置新文件名
$this->uploaded = $this->save_path.$new_name;//上传后的文件名
//移动文件
if(move_uploaded_file($tmp_name,$this->uploaded)){
$this->errmsg = '文件<font color=red>'.$this->uploaded.'</font>上传成功!';
return TRUE;
}else{
$this->errmsg = '文件<font color=red>'.$this->uploaded.'</font>上传失败!';
return FALSE;
}
}
}
/**
* 检查上传文件类型
* @access public
* @param string $filename 等待检查的文件名
* @return 如果检查通过返回TRUE 未通过则返回FALSE和错误消息
*/
public function check_file_type($filename){
$ext = $this->get_file_type($filename);
$this->ext = $ext;
$allow_types = explode()('|',$this->allow_types);//分割允许上传的文件扩展名为数组
//echo $ext;
//检查上传文件扩展名是否在请允许上传的文件扩展名中
if(in_array($ext,$allow_types)){
return TRUE;
}else{
$this->errmsg = '上传文件<font color=red>'.$filename.'</font>类型错误,只支持上传<font color=red>'.str_replace()('|',',',$this->allow_types).'</font>等文件类型!';
return FALSE;
}
}
/**
* 取得文件类型
* @access public
* @param string $filename 要取得文件类型的目标文件名
* @return string 文件类型
*/
public function get_file_type($filename){
$info = pathinfo($filename);
$ext = $info['extension'];
return $ext;
}
/**
* 设置文件上传后的保存路径
*/
public function set_save_path(){
$this->save_path = (preg_match('/\/$/',$this->save_path)) ? $this->save_path : $this->save_path . '/';
if(!is_dir($this->save_path)){
//如果目录不存在,创建目录
$this->set_dir();
}
}
/**
* 创建目录
* @access public
* @param string $dir 要创建目录的路径
* @return boolean 失败时返回错误消息和FALSE
*/
public function set_dir($dir = null){
//检查路径是否存在
if(!$dir){
$dir = $this->save_path;
}
if(is_dir($dir)){
$this->errmsg = '需要创建的文件夹已经存在!';
}
$dir = explode('/', $dir);
foreach($dir as $v){
if($v){
$d .= $v . '/';
if(!is_dir($d)){
$state = mkdir($d, 0777);
if(!$state)
$this->errmsg = '在创建目录<font color=red>' . $d . '时出错!';
}
}
}
return true;
}
}
?>

2、图片处理类的代码
 

<?php
/*************************************************
* 图片处理类
*
* 可以对图片进行生成缩略图,打水印等操作
* 本类默认编码为UTF8 如果要在GBK下使用请将img_mark方法中打中文字符串水印iconv注释去掉
*
* 由于UTF8汉字和英文字母大小(像素)不好确定,在中英文混合出现太多时可能会出现字符串偏左
* 或偏右,请根据项目环境对get_mark_xy方法中的$strc_w = strlen($this->mark_str)*7+5进
* 行调整
* 需要GD库支持,为更好使用本类推荐使用GD库2.0+
*
* @author http://www.
*************************************************/
class uploadImg extends uploadFile {
public $mark_str = 'www.'; //水印字符串
public $str_r = 0; //字符串颜色R
public $str_g = 0; //字符串颜色G
public $str_b = 0; //字符串颜色B
public $mark_ttf = './upload/SIMSUN.TTC'; //水印文字字体文件(包含路径)
public $mark_logo = './upload/logo.png'; //水印图片
public $resize_h;//生成缩略图高
public $resize_w;//生成缩略图宽
public $source_img;//源图片文件
public $dst_path = './upload/';//缩略图文件存放目录,不填则为源图片存放目录
/**
* 生成缩略图 生成后的图
* @access public
* @param integer $w 缩小后图片的宽(px)
* @param integer $h 缩小后图片的高(px)
* @param string $source_img 源图片(路径+文件名)
*/
public function img_resized($w,$h,$source_img = NULL){
$source_img = $source_img == NULL ? $this->uploaded : $source_img;//取得源文件的地址,如果为空则默认为上次上传的图片
if(!is_file($source_img)) { //检查源图片是否存在
$this->errmsg = '文件'.$source_img.'不存在';
return FALSE;
}
$this->source_img = $source_img;
$img_info = getimagesize($source_img);
$source = $this->img_create($source_img); //创建源图片
$this->resize_w = $w;
$this->resize_h = $h;
$thumb = imagecreatetruecolor($w,$h);
imagecopyresized($thumb,$source,0,0,0,0,$w,$h,$img_info[0],$img_info[1]);//生成缩略图片
$dst_path = $this->dst_path == '' ? $this->save_path : $this->dst_path; //取得目标文件夹路径
$dst_path = (preg_match('/\/$/',$dst_path)) ? $dst_path : $dst_path . '/';//将目标文件夹后加上/
if(!is_dir($dst_path)) $this->set_dir($dst_path); //如果不存在目标文件夹则创建
$dst_name = $this->set_newname($source_img);
$this->img_output($thumb,$dst_name);//输出图片
imagedestroy($source);
imagedestroy($thumb);
}
/**
*打水印
*@access public
*@param string $source_img 源图片路径+文件名
*@param integer $mark_type 水印类型(1为英文字符串,2为中文字符串,3为图片logo,默认为英文字符串)
*@param integer $mark_postion 水印位置(1为左下角,2为右下角,3为左上角,4为右上角,默认为右下角);
*@return 打上水印的图片
*/
public function img_mark($source_img = NULL,$mark_type = 1,$mark_postion = 2) {
$source_img = $source_img == NULL ? $this->uploaded : $source_img;//取得源文件的地址,如果为空则默认为上次上传的图片
if(!is_file($source_img)) { //检查源图片是否存在
$this->errmsg = '文件'.$source_img.'不存在';
return FALSE;
}
$this->source_img = $source_img;
$img_info = getimagesize($source_img);
$source = $this->img_create($source_img); //创建源图片
$mark_xy = $this->get_mark_xy($mark_postion);//取得水印位置
$mark_color = imagecolorallocate($source,$this->str_r,$this->str_g,$this->str_b);
switch($mark_type) {
case 1 : //加英文字符串水印
$str = $this->mark_str;
imagestring($source,5,$mark_xy[0],$mark_xy[1],$str,$mark_color);
$this->img_output($source,$source_img);
break;
case 2 : //加中文字符串水印
if(!is_file($this->mark_ttf)) { //检查字体文件是否存在
$this->errmsg = '打水印失败:字体文件'.$this->mark_ttf.'不存在!';
return FALSE;
}
$str = $this->mark_str;
//$str = iconv('gbk','utf-8',$str);//转换字符编码 如果使用GBK编码请去掉此行注释
imagettftext($source,12,0,$mark_xy[2],$mark_xy[3],$mark_color,$this->mark_ttf,$str);
$this->img_output($source,$source_img);
break;
case 3 : //加图片水印
if(is_file($this->mark_logo)){ //如果存在水印logo的图片则取得logo图片的基本信息,不存在则退出
$logo_info = getimagesize($this->mark_logo);
}else{
$this->errmsg = '打水印失败:logo文件'.$this->mark_logo.'不存在!';
return FALSE;
}
$logo_info = getimagesize($this->mark_logo);
if($logo_info[0]>$img_info[0] || $logo_info[1]>$img_info[1]) { //如果源图片小于logo大小则退出
$this->errmsg = '打水印失败:源图片'.$this->source_img.'比'.$this->mark_logo.'小!';
return FALSE;
}
$logo = $this->img_create($this->mark_logo);
imagecopy ( $source, $logo, $mark_xy[4], $mark_xy[5], 0, 0, $logo_info[0], $logo_info[1]);
$this->img_output($source,$source_img);
break;
default: //其它则为文字图片
$str = $this->mark_str;
imagestring($source,5,$mark_xy[0],$mark_xy[1],$str,$mark_color);
$this->img_output($source,$source_img);
break;
}
imagedestroy($source);
}
/**
* 取得水印位置
* @access private
* @param integer $mark_postion 水印的位置(1为左下角,2为右下角,3为左上角,4为右上角,其它为右下角)
* @return array $mark_xy 水印位置的坐标(索引0为英文字符串水印坐标X,索引1为英文字符串水印坐标Y,
* 索引2为中文字符串水印坐标X,索引3为中文字符串水印坐标Y,索引4为水印图片坐标X,索引5为水印图片坐标Y)
*/
private function get_mark_xy($mark_postion){
$img_info = getimagesize($this->source_img);
$stre_w = strlen($this->mark_str)*9+5 ; //水印英文字符串的长度(px)(5号字的英文字符大小约为9px 为了美观再加5px)
//(12号字的中文字符大小为12px,在utf8里一个汉字长度为3个字节一个字节4px 而一个英文字符长度一个字节大小大约为9px
// 为了在中英文混合的情况下显示完全 设它的长度为字节数*7px)
$strc_w = strlen($this->mark_str)*7+5 ; //水印中文字符串的长度(px)
if(is_file($this->mark_logo)){ //如果存在水印logo的图片则取得logo图片的基本信息
$logo_info = getimagesize($this->mark_logo);
}
//由于imagestring函数和imagettftext函数中对于字符串开始位置不同所以英文和中文字符串的Y位置也有所不同
//imagestring函数是从文字的左上角为参照 imagettftext函数是从文字左下角为参照
switch($mark_postion){
case 1: //位置左下角
$mark_xy[0] = 5; //水印英文字符串坐标X
$mark_xy[1] = $img_info[1]-20;//水印英文字符串坐标Y
$mark_xy[2] = 5; //水印中文字符串坐标X
$mark_xy[3] = $img_info[1]-5;//水印中文字符串坐标Y
$mark_xy[4] = 5;//水印图片坐标X
$mark_xy[5] = $img_info[1]-$logo_info[1]-5;//水印图片坐标Y
break;
case 2: //位置右下角
$mark_xy[0] = $img_info[0]-$stre_w; //水印英文字符串坐标X
$mark_xy[1] = $img_info[1]-20;//水印英文字符串坐标Y
$mark_xy[2] = $img_info[0]-$strc_w; //水印中文字符串坐标X
$mark_xy[3] = $img_info[1]-5;//水印中文字符串坐标Y
$mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印图片坐标X
$mark_xy[5] = $img_info[1]-$logo_info[1]-5;//水印图片坐标Y
break;
case 3: //位置左上角
$mark_xy[0] = 5; //水印英文字符串坐标X
$mark_xy[1] = 5;//水印英文字符串坐标Y
$mark_xy[2] = 5; //水印中文字符串坐标X
$mark_xy[3] = 15;//水印中文字符串坐标Y
$mark_xy[4] = 5;//水印图片坐标X
$mark_xy[5] = 5;//水印图片坐标Y
break;
case 4: //位置右上角
$mark_xy[0] = $img_info[0]-$stre_w; //水印英文字符串坐标X
$mark_xy[1] = 5;//水印英文字符串坐标Y
$mark_xy[2] = $img_info[0]-$strc_w; //水印中文字符串坐标X
$mark_xy[3] = 15;//水印中文字符串坐标Y
$mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印图片坐标X
$mark_xy[5] = 5;//水印图片坐标Y
break;
default : //其它默认为右下角
$mark_xy[0] = $img_info[0]-$stre_w; //水印英文字符串坐标X
$mark_xy[1] = $img_info[1]-5;//水印英文字符串坐标Y
$mark_xy[2] = $img_info[0]-$strc_w; //水印中文字符串坐标X
$mark_xy[3] = $img_info[1]-15;//水印中文字符串坐标Y
$mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印图片坐标X
$mark_xy[5] = $img_info[1]-$logo_info[1]-5;//水印图片坐标Y
break;
}
return $mark_xy;
}
/**
* 创建源图片
* @access private
* @param string $source_img 源图片(路径+文件名)
* @return img 从目标文件新建的图像
*/
private function img_create($source_img) {
$info = getimagesize($source_img);
switch ($info[2]){
case 1:
if(!function_exists('imagecreatefromgif')){
$source = @imagecreatefromjpeg($source_img);
}else{
$source = @imagecreatefromgif($source_img);
}
break;
case 2:
$source = @imagecreatefromjpeg($source_img);
break;
case 3:
$source = @imagecreatefrompng($source_img);
break;
case 6:
$source = @imagecreatefromwbmp($source_img);
break;
default:
$source = FALSE;
break;
}
return $source;
}
/**
* 重命名图片
* @access private
* @param string $source_img 源图片路径+文件名
* @return string $dst_name 重命名后的图片名(路径+文件名)
*/
private function set_newname($sourse_img) {
$info = pathinfo($sourse_img);
$new_name = $this->resize_w.'_'.$this->resize_h.'_'.$info['basename'];//将文件名修改为:宽_高_文件名
if($this->dst_path == ''){ //如果存放缩略图路径为空则默认为源文件同文件夹
$dst_name = str_replace($info['basename'],$new_name,$sourse_img);
}else{
$dst_name = $this->dst_path.$new_name;
}
return $dst_name;
}
/**
* 输出图片
* @access private
* @param $im 处理后的图片
* @param $dst_name 输出后的的图片名(路径+文件名)
* @return 输出图片
*/
public function img_output($im,$dst_name) {
$info = getimagesize($this->source_img);
switch ($info[2]){
case 1:
if(!function_exists('imagegif')){
imagejpeg($im,$dst_name);
}else{
imagegif($im, $dst_name);
}
break;
case 2:
imagejpeg($im,$dst_name);
break;
case 3:
imagepng($im,$dst_name);
break;
case 6:
imagewbmp($im,$dst_name);
break;
}
}
}
?>

就是这些了,有关php文件上传原理,大家有时间也可以看看,以更好地理解以上的代码。


    
[2]php文件上传原理深入分析与理解
    来源: 互联网  发布时间: 2013-12-24

很多的php 教程中,都会介绍文件上传,众所周知,php文件上传是简单而高效的,今天为大家分析下其原理。

//使用multipart/form-data编码格式
$_FILES系统函数;
$_FILES['myFile']['name']文件名称
$_FILES['myFile']['type']文件的类型,服务端进行限制
image/**
image/x-png
application/x-zip-compressed
$_FILES['myFile']['size']上传文件大小
$_FILES['myFile']['tmp_name']上传服务后保存临时文件名
$_FILES['myFile']['error']错误代码;
0成功1超过php.ini大小2超过MAX_FILE_SIZE选项指定的值
3只有部分上传 5上传文件大小为0

move_uploaded_file(临时文件,目标位置和文件名);
上传后移动文件到目标位置的函数
is_uploaded_file(MIME);

判断上传MIME类型的例子:
1、html部分

<form enctyoe="multipart/form-data" method="post" name="upload">
<input name="upfile" name="name">
</form>

2、文件上传代码

<?php
if(is_uploaded_file($_FILES['myFile']['tmp_name'])){
$upfile = $_FILES['upload'];
$name = $upfile['name'];
$type = $upfile['type'];
$size = $upfile['size'];
$tmp_name = $upfile['tmp_name'];
$error = $upfile['error'];
switch($type){
case 'image/pjpeg' : $ok=1;
break
}
if($ok){
move_uploaded_file($tmp_name,'up/'.$name);
}else{
echo "不允许的文件类型";
}
}
?>

-------------------------------------------
PHP文件上传的原理及实现
 
一,表单
     1,上传文件的表单使用post方式(和get的区别不用说了);还要加上enctype='multipart/form-data'。
     2,一般要加上隐藏域:<input type=hidden name='MAX_FILE_SIZE' value=dddddd>,位置在file域前面。value的值是上传文件的客户端字节限制。据说可以减少文件超标时客户端的等待时间,不过我没觉得有什么区别。
     3,出于安全考虑,file域是不许赋值的。随便在file域输入字符串,然后按submit也不会有反应。必须是第二个字符是冒号的时候(比如空格跟随冒号可以上传一个长度为0字节的“文件”),submit才同意“服务”——不过这个是客户端的措施,跟MAX_FILE_SIZE一样很容易绕过去。

二,文件上传错误代码
     先抄一段:预定义变量$_FILES数组有5个内容:
     $_FILES['userfile']['name']——客户端机器文件的原名称
     $_FILES['userfile']['type']——文件的 MIME 类型
     $_FILES['userfile']['size']——已上传文件的大小,单位为字节
     $_FILES['userfile']['tmp_name']——文件被上传后在服务端储存的临时文件名
     $_FILES['userfile']['error']——和该文件上传相关的错误代码

     其中$_FILES['userfile']['error']的可以有下列取值和意义:
     0——没有错误发生,文件上传成功。 
     1——上传的文件超过了 php.ini 中 upload_max_filesize 选项限制的值。 
     2——上传文件的大小超过了 HTML 表单中 MAX_FILE_SIZE 选项指定的值。 
     3——文件只有部分被上传。 
     4——没有文件被上传。 
    
     1~3不用说了。
     “没有文件被上传”(4)是指表单的file域没有内容,是空字符串。
     “文件上传成功”(0)不一定真的有文件上传了。比如你打了个“c:”给file域,就可以“上传成功”——错误代码是0,['name']是“c:”,['type']是“application/octet-stream”,['size']是0,['tmp_name']是“xxx.tmp”(xxx是服务器起的名字)
    
三,文件大小限制和检验
     限制上传文件大小的因素有
     1,客户端的隐藏域MAX_FILE_SIZE的数值(可以被绕开)。
     2,服务器端的upload_max_filesize,post_max_size和memory_limit。这几项不能够用脚本来设置。
     3,自定义文件大小限制逻辑。即使服务器的限制是能自己决定,也会有需要个别考虑的情况。所以这个限制方式经常是必要的。
    
     我碰见的一种情况可能不是普遍性的,说明一下。如果文件比服务器端限制(upload_max_filesize)大很多,但也还没达到或接近post_max_size或者memory_limit,$_FILES就会“崩溃”——结果是$_FILES['userfile']变成了“Undefined index”,当然是什么检验也做不到了。

     服务器端限制的检验优先于客户端限制的检验。就是说,如果两个限制是一样的,而文件过大了,$_FILES['userfile']['error']会出错误代码1。只有客户端限制比服务器端限制小到一定“程度”,而且文件大小超过两者的时候,才会出现错误代码2(难道这跟我感觉MAX_FILE_SIZE没起到预想的作用是一个原因?)。上述的“程度”,在我的机器上试验在3~4K之间——我的机器设置的服务器端限制为2M……因为没什么意味,就没有追求精确的规律。

     出现错误代码1或2的时候:
     $_FILES['userfile']['name']为客户端机器文件的原名称
     $_FILES['userfile']['type']为空字符串
     $_FILES['userfile']['size']为0
     $_FILES['userfile']['tmp_name']为空字符串

四,文件路径检验     
     file域无输入,错误代码为4(无文件上传)
     $_FILES['userfile']['name']为空字符串
     $_FILES['userfile']['type']为空字符串
     $_FILES['userfile']['size']为0
     $_FILES['userfile']['tmp_name']为空字符串
    
     file域是非文件路径的字符串(不考虑客户端的假“限制”了),错误代码是0(“上传成功”)
     $_FILES['userfile']['name']为原字符串
     $_FILES['userfile']['type']为application/octet-stream
     $_FILES['userfile']['size']为0
     $_FILES['userfile']['tmp_name']为一个暂时文件名   

五,is_uploaded_file()的返回值
     手册上面不很详细地说,用法是:
         bool is_uploaded_file( string filename)
     实际上
         is_uploaded_file($_FILES['userfile']['name']);
     总是返回FALSE。后来看见别人是用:
         is_uploaded_file($_FILES['userfile']['tmp_name']);

     比较一下:
     file域无输入——————返回FALSE——error=>4,name=>'',    tmp_name=>'',    type=>'',    size=>0
     file域为非路径字符串——返回 TRUE——error=>0,name=>'xxx',tmp_name=>'yyy',type=>'zzz',size=>0
     文件上传成功——————返回 TRUE——error=>0,name=>'xxx',tmp_name=>'yyy',type=>'zzz',size=>sss
     文件太大————————返回FALSE——error=>1,name=>'xxx',tmp_name=>'',    type=>'',    size=>0
     文件太大————————返回FALSE——error=>2,name=>'xxx',tmp_name=>'',    type=>'',    size=>0
     文件部分上传——————没机会试验 —error=>3

     有点怀疑这个函数是怎么工作的,还是觉得用$_FILES['userfile']['size']检验好些。

六,检验顺序
     if($_FILES['userfile']['error']!=4){//有文件上传
         if($_FILES['userfile']['error']!=3){//全部上传了
             if($_FILES['userfile']['error']!=1){//不超过服务器端文件大小限制
                 if($_FILES['userfile']['error']!=2){//不超过客户端文件大小限制
                     if($_FILES['userfile']['size']>0){//确实是文件
                         if(......){//自定义文件大小检验逻辑
                             if(......){//自定义文件类型检验逻辑
                                 if(move_uploaded_file($_FILES['userfile']['tmp_name'],...))//移动文件
                                     //..........
                                 }
                                 else
                                     give_a_message(...);
                             }
                             else
                                 give_a_message(...);
                         }
                         else
                             give_a_message(...);
                     }
                     else
                         give_a_message(...);
                 }
                 else
                     give_a_message(...);
             }
             else
                 give_a_message(...);
         }
         else
             give_a_message(...);
     }
附代码:
------------------------------
1)、test.php:

<html>
<body>
 <form enctype="multipart/form-data" action="/blog_article/upload.html" method="POST">
     <input type="hidden" name="MAX_FILE_SIZE" value="30000" />
     Send this file: <input name="userfile" type="file" accept="image/x-png,image/gif,image/jpeg"/>
     <input type="submit" value="Send File" />
 </form>
</body>
</html>

2)、upload.php

<html>
<body>
 <?php
  $uploaddir = 'images/';
  $uploadfile = $uploaddir. $_FILES['userfile']['name'];
  print "<pre>";
  if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
     print "File is valid, and was successfully uploaded.  Here's some more debugging info:\n";
     print_r($_FILES);
  } else {
     print "Possible file upload attack!  Here's some debugging info:\n";
     print_r($_FILES);
  }
  print "</pre>";
 ?>
</body>
</html>

    
[3]php 文件上传类(轻便型)
    来源: 互联网  发布时间: 2013-12-24

1、php 文件上传类的代码。

<?php
/**
 * 文件上传类
 * by http://www.
*/
class Ftp{
    public $off; // 返回操作状态(成功/失败)
    public $conn_id; // FTP连接
 
    /**
     * 方法:FTP连接
     * @FTP_HOST -- FTP主机
     * @FTP_PORT -- 端口
     * @FTP_USER -- 用户名
     * @FTP_PASS -- 密码
     */
    function __construct($FTP_HOST,$FTP_PORT,$FTP_USER,$FTP_PASS){
        $this->conn_id = @ftp_connect($FTP_HOST,$FTP_PORT) or die("FTP服务器连接失败");
        @ftp_login($this->conn_id,$FTP_USER,$FTP_PASS) or die("FTP服务器登陆失败");
        @ftp_pasv($this->conn_id,1); // 打开被动模拟

    }
 
    /**
     * 方法:上传文件
     * @path -- 本地路径
     * @newpath -- 上传路径
     * @type -- 若目标目录不存在则新建
     */
    function up_file($path,$newpath,$type=true){
        if($type) $this->dir_mkdirs($newpath);
        $this->off = @ftp_put($this->conn_id,$newpath,$path,FTP_BINARY);
        if($this->off){
            return array('error'=>0,'url'=>'http://img./'.$newpath);
        }else{
            return array('error'=>1,'message'=>'put error');
        }
    }


    /**
     * 方法:移动文件
     * @path -- 原路径
     * @newpath -- 新路径
     * @type -- 若目标目录不存在则新建
     */
    function move_file($path,$newpath,$type=true){
        if($type) $this->dir_mkdirs($newpath);
        $this->off = @ftp_rename($this->conn_id,$path,$newpath);
        if(!$this->off) echo "文件移动失败,请检查权限及原路径是否正确!";
    }


    /**
     * 方法:复制文件
     * 说明:由于FTP无复制命令,本方法变通操作为:下载后再上传到新的路径
     * @path -- 原路径
     * @newpath -- 新路径
     * @type -- 若目标目录不存在则新建
     */
    function copy_file($path,$newpath,$type=true){
        $downpath = "c:/tmp.dat";
        $this->off = @ftp_get($this->conn_id,$downpath,$path,FTP_BINARY);// 下载

        if(!$this->off) echo "文件复制失败,请检查权限及原路径是否正确!";
        $this->up_file($downpath,$newpath,$type);
    }


    /**
     * 方法:删除文件
     * @path -- 路径
     */
    function del_file($path){
        $this->off = @ftp_delete($this->conn_id,$path);
        if(!$this->off) echo "文件删除失败,请检查权限及路径是否正确!";
    }


    /**
     * 方法:生成目录
     * @path -- 路径
     */
    function dir_mkdirs($path){
        $path_arr = explode()('/',$path); // 取目录数组

        $file_name = array_pop($path_arr); // 弹出文件名

        $path_div = count($path_arr); // 取层数


        foreach($path_arr as $val){ // 创建目录
            if(@ftp_chdir($this->conn_id,$val) == FALSE){
                $tmp = @ftp_mkdir($this->conn_id,$val);
                if($tmp == FALSE){
                    echo "目录创建失败,请检查权限及路径是否正确!";
                    exit;
                }
                @ftp_chdir($this->conn_id,$val);
            }
        }
        for($i=1;$i<=$path_div;$i++){ // 回退到根
            @ftp_cdup($this->conn_id);
        }
    }


    /**
     * 方法:关闭FTP连接
     */
    function close(){
        @ftp_close($this->conn_id);
    }

}// class class_ftp end
?>

2、调用示例

<?php
//实例化
$ftp = new Ftp($FTP_HOST,$FTP_PORT,$FTP_USER,$FTP_PASS);

//上传文件
$result  = $ftp->up_file($localfile,$remote_file);
$ftp->close();
?>

    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3