ThinkPHP Mysql表结构修改类

jerry thinkphp 2015年11月19日 收藏
基于ThinkPHP的Mysql表结构更改类,可以创建数据表,添加,编辑删除字段
  1. <?php
  2. /*
  3.  *    mysql表结构处理类
  4.  *    创建数据表,增加,编辑,删除表中字段
  5.  *
  6.  */
  7. class MysqlManage{
  8.     /*
  9.      * 创建数据库,并且主键是aid
  10.      * table 要查询的表名
  11.      */
  12.     function createTable($table){
  13.         $sql="CREATE TABLE IF NOT EXISTS `$table` (`aid` INT NOT NULL primary key)ENGINE = InnoDB;";
  14.         M()->execute($sql);
  15.         $this->checkTable($table);
  16.     }
  17.     /*
  18.      * 检测表是否存在,也可以获取表中所有字段的信息
  19.      * table 要查询的表名
  20.      * return 表里所有字段的信息
  21.      */
  22.     function checkTable($table){
  23.         $sql="desc `$table`";
  24.         $info=M()->execute($sql);
  25.         return $info;
  26.     }

  27.     /*
  28.      * 检测字段是否存在,也可以获取字段信息(只能是一个字段)
  29.      * table 表名
  30.      * field 字段名
  31.      */
  32.     function checkField($table,$field){
  33.         $sql='desc `$table` $field';
  34.         $info=M()->execute($sql);
  35.         return $info;
  36.     }

  37.     /*
  38.      * 添加字段
  39.      * table 表名
  40.      * info  字段信息数组 array
  41.      * return 字段信息 array
  42.      */
  43.     function addField($table,$info){
  44.         $sql="alter table `$table` add column";
  45.         $sql.=$this->filterFieldInfo();
  46.         M()->execute($sql);
  47.         $this->checkField($table,$info['name']);
  48.     }

  49.     /*
  50.      * 修改字段
  51.      * 不能修改字段名称,只能修改
  52.      */
  53.     function editField($table,$info){
  54.         $sql="alter table `$table` modify ";
  55.         $sql.=$this->filterFieldInfo($info);
  56.         M()->execute($sql);
  57.         $this->checkField($table,$info['name']);
  58.     }

  59.     /*
  60.      * 字段信息数组处理,供添加更新字段时候使用
  61.      * info[name]   字段名称
  62.      * info[type]   字段类型
  63.      * info[length]  字段长度
  64.      * info[isNull]  是否为空
  65.      * info['default']   字段默认值
  66.      * info['comment']   字段备注
  67.      */
  68.     private function filterFieldInfo($info){
  69.         if(!is_array($info))
  70.             return
  71.         $newInfo=array();
  72.         $newInfo['name']=$info['name'];
  73.         $newInfo['type']=$info['type'];
  74.         switch($info['type']){
  75.             case 'varchar':
  76.             case 'char':
  77.                 $newInfo['length']=empty($info['length'])?100:$info['length'];
  78.                 $newInfo['isNull']=$info['isNull']==1?'NULL':'NOT NULL';
  79.                 $newInfo['default']=empty($info['default'])?'':'DEFAULT '.$info['default'];
  80.                 $newInfo['comment']=empty($info['comment'])?'':'COMMENT '.$info['comment'];
  81.                                  break;
  82.             case 'int':
  83.                 $newInfo['length']=empty($info['length'])?7:$info['length'];
  84.                 $newInfo['isNull']=$info['isNull']==1?'NULL':'NOT NULL';
  85.                 $newInfo['default']=empty($info['default'])?'':'DEFAULT '.$info['default'];
  86.                 $newInfo['comment']=empty($info['comment'])?'':'COMMENT '.$info['comment'];
  87.                                  break;
  88.             case 'text':
  89.                 $newInfo['length']='';
  90.                 $newInfo['isNull']=$info['isNull']==1?'NULL':'NOT NULL';
  91.                 $newInfo['default']='';
  92.                 $newInfo['comment']=empty($info['comment'])?'':'COMMENT '.$info['comment'];
  93.                                 break;
  94.         }
  95.         $sql=$newInfo['name']." ".$newInfo['type'];
  96.         $sql.=(!empty($newInfo['length']))?($newInfo['length']) .' ':' ';
  97.         $sql.=$newInfo['isNull'].' ';
  98.         $sql.=$newInfo['default'];
  99.         $sql.=$newInfo['comment'];
  100.         return $sql;
  101.     }

  102.     /*
  103.      * 删除字段
  104.      * 如果返回了字段信息则说明删除失败,返回false,则为删除成功
  105.      */
  106.     function dropField($table,$field){
  107.         $sql="alter table `$table` drop column $field";
  108.         M()->execute($sql);
  109.         $this->checkField($table,$filed);
  110.     }

  111.     /*
  112.      * 获取指定表中指定字段的信息(多字段)
  113.      */
  114.     function getFieldInfo($table,$field){
  115.         $info=array();
  116.         if(is_string($field)){
  117.             $this->checkField($table,$field);
  118.         }else{
  119.             foreach($field as $v){
  120.                 $info[$v]=$this->checkField($table,$v);
  121.             }
  122.         }
  123.         return $info;
  124.     }
  125. }
转载请注明出处:http://a3147972.blog.51cto.com/2366547/1543179