php连mysql数据库

20 篇文章 0 订阅

建立一个pdo.php文件

 

<?php
class Pdodb{
  protected $pdo;
  protected $res;
  protected $config;
  /*构造函数*/
  function __construct($config){
    //parent::__construct();
    $this->Config = $config;
    $this->connect();
  }
  /*数据库连接*/
  public function connect(){
    try {
        $this->pdo= new PDO($this->Config['dsn'], $this->Config['username'], $this->Config['password']);//$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass);
        $this->pdo->query("set names utf8");
    }catch(Exception $e){
      echo '数据库连接失败,详情: ' . $e->getMessage () . ' 请在配置文件中数据库连接信息';
      exit ();
    }
    /*
    if($this->Config['type']=='oracle'){
      $this->pdo->query("set names {$this->Config['charset']};");
    }else{
      $this->pdo->query("set names {$this->Config['charset']};");
    }
    */
    //把结果序列化成stdClass
    //$this->pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
    //自己写代码捕获Exception
    //$this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $this->pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);//属性名 属性值 数组以关联数组返回
  }
  /*数据库关闭*/
  public function close(){
    $this->pdo = null;
  }
  //用于有记录结果返回的操作,特别是SELECT操作
  public function query($sql,$return=false){
    $res = $this->pdo->query($sql);
    if($res){
      $this->res = $res; // 未返回 return $this->res;
    }
    if($return){
      return $res;
    }
  }
  //主要是针对没有结果集合返回的操作,比如INSERT、UPDATE、DELETE等操作
  public function exec($sql,$return=false){
    $res = $this->pdo->exec($sql);
    if($res){
      $this->res = $res;
    }
    if($return){//返回操作是否成功 成功返回1 失败0
      return $res;
    }
  }
  //将$this->res以数组返回(全部返回)
  public function fetchAll(){
    return $this->res->fetchAll();
  }
  //将$this->res以数组返回(一条记录)
  public function fetch(){
    return $this->res->fetch();
  }
  //返回所有字段
  public function fetchColumn(){
    return $this->res->fetchColumn();
  }
  //返回最后插入的id
  public function lastInsertId(){
    return $this->res->lastInsertId();
  }
  //返回最后插入的id
  public function lastInsertId2(){
    return $this->pdo->lastInsertId();
  }
  /**
  * 参数说明
  * string/array $table 数据库表,两种传值模式
  * 普通模式:
  * 'tb_member, tb_money'
  * 数组模式:
  * array('tb_member', 'tb_money')
  * string/array $fields 需要查询的数据库字段,允许为空,默认为查找全部,两种传值模式
  * 普通模式:
  * 'username, password'
  * 数组模式:
  * array('username', 'password')
  * string/array $sqlwhere 查询条件,允许为空,两种传值模式
  * 普通模式(必须加上and,$sqlwhere为空 1=1 正常查询):
  * 'and type = 1 and username like "%os%"'
  * 数组模式:
  * array('type = 1', 'username like "%os%"')
  * string $orderby 排序,默认为id倒序
  *int $debug 是否开启调试,开启则输出sql语句
  * 0 不开启
  * 1 开启
  * 2 开启并终止程序
  * int $mode 返回类型
  * 0 返回多条记录
  * 1 返回单条记录
  * 2 返回行数
  */
  public function select($table, $fields="*", $sqlwhere="", $orderby="", $debug=0, $mode=0){
    //参数处理
    if(is_array($table)){
      $table = implode(', ', $table);
    }
    if(is_array($fields)){
      $fields = implode(',',$fields);
      /*
      if($this->Config['type']=='oracle'){
        //$fields = implode(',',$fields);//CUSTOMER_ID,FIRST_NAME,LAST_NAME,EMAIL
        //$fields = implode(",'UTF8','ZHS16GBK') ,convert(",$fields);
        //$fields="convert(".$fields.",'UTF8','ZHS16GBK')";
      }else{
        $fields = implode(',',$fields);
      }
      */
    }
    if(is_array($sqlwhere)){
      $sqlwhere = ' and '.implode(' and ', $sqlwhere);
    }
    //数据库操作
    if($debug === 0){
      if($mode === 2){ //统计
        $this->query("select count(*) from $table where 1=1 $sqlwhere");
        $return = $this->fetchColumn();
      }else if($mode === 1){ //返回一条
        $this->query("select $fields from $table where 1=1 $sqlwhere $orderby");
        $return = $this->fetch();
      }else{
        $this->query("select $fields from $table where 1=1 $sqlwhere $orderby");
        $return = $this->fetchAll();//如果 $this->res为空即sql语句错误 会提示Call to a member function fetchAll() on a non-object
      }
      return $return;
    }else{
        if($mode === 2){
          echo "select count(*) from $table where 1=1 $sqlwhere";
        }else if($mode === 1){
          echo "select $fields from $table where 1=1 $sqlwhere $orderby";
        }else{
          echo "select $fields from $table where 1=1 $sqlwhere $orderby";
        }
        if($debug === 2){
          exit;
        }
    }
  }
  /**
  * 参数说明
  * string/array $table 数据库表,两种传值模式
  * 普通模式:
  * 'tb_member, tb_money'
  * 数组模式:
  * array('tb_member', 'tb_money')
  * string/array $set 需要插入的字段及内容,两种传值模式
  * 普通模式:
  * 'username = "test", type = 1, dt = now()'
  * 数组模式:
  * array('username = "test"', 'type = 1', 'dt = now()')
  * int $debug 是否开启调试,开启则输出sql语句
  * 0 不开启
  * 1 开启
  * 2 开启并终止程序
  * int $mode 返回类型
  * 0 无返回信息
  * 1 返回执行条目数
  * 2 返回最后一次插入记录的id
  */
  public function oic_insert($table, $set, $debug=0, $mode=0){
    //参数处理
    if(is_array($table)){
      $table = implode(', ', $table);
    }
    if(is_array($set)){
      $s='';$i=0;
      foreach($set as $k=>$v){
        $i++;
        $s[$i]=$k;//,连接
        $val[$i]=$v;
      }
      $sarr=implode(",",$s);//去掉最后一个,
      //array_pop($sarr);
      $set=implode("','",$val);15221579236','张三','','2001','8','4','女','是
      //$set = implode(', ', $set);
    }
    //数据库操作
    if($debug === 0){
      if($mode === 2){
        $this->query("insert into $table ($sarr) values('".$set."')");
        //$return = $this->lastInsertId();
      }else if($mode === 1){
        $this->exec("insert into $table ($sarr) values('".$set."')");
        $return = $this->res;
      }else{
        $this->query("insert into $table ($sarr) values('".$set."')");
        $return = NULL;
      }
      return $return;
    }else{
      echo "insert into $table ($sarr) values('".$set."')";
      if($debug === 2){
        exit;
      }
    }
  }
  public function insert($table, $set, $debug=0, $mode=0){
    //参数处理
    if(is_array($table)){
      $table = implode(', ', $table);
    }
    if(is_array($set)){
      $s='';
      foreach($set as $k=>$v){
        $s.=$k."='".$v."',";//,连接
      }
      $sarr=explode(',',$s);//去掉最后一个,
      array_pop($sarr);
      $set=implode(',',$sarr);
      //$set = implode(', ', $set);
    }
    //数据库操作
    if($debug === 0){
      if($mode === 2){
        $this->query("insert into $table set $set");
        $return = $this->pdo->lastInsertId();
      }else if($mode === 1){
        $this->exec("insert into $table set $set");
        $return = $this->res;
      }else{
        $this->query("insert into $table set $set");
        $return = NULL;
      }
      return $return;
    }else{
      echo "insert into $table set $set";
      if($debug === 2){
        exit;
      }
    }
  }
  /**
  * 参数说明
  * string $table 数据库表,两种传值模式
  * 普通模式:
  * 'tb_member, tb_money'
  * 数组模式:
  * array('tb_member', 'tb_money')
  * string/array $set 需要更新的字段及内容,两种传值模式
  * 普通模式:
  * 'username = "test", type = 1, dt = now()'
  * 数组模式:
  * array('username = "test"', 'type = 1', 'dt = now()')
  * string/array $sqlwhere 修改条件,允许为空,两种传值模式
  * 普通模式:
  * 'and type = 1 and username like "%os%"'
  * 数组模式:
  * array('type = 1', 'username like "%os%"')
  * int $debug 是否开启调试,开启则输出sql语句
  * 0 不开启
  * 1 开启
  * 2 开启并终止程序
  * int $mode 返回类型
  * 0 无返回信息
  * 1 返回执行条目数
  */
  public function update($table, $set, $sqlwhere="", $debug=0, $mode=0){
    //参数处理
    if(is_array($table)){
      $table = implode(', ', $table);
    }
    if(is_array($set)){
      $s='';
      foreach($set as $k=>$v){
        $s.=$k."='".$v."',";
      }
      $sarr=explode(',',$s);//去掉最后一个,
      array_pop($sarr);
      $set=implode(',',$sarr);
      //$set = implode(', ', $set);
    }
    if(is_array($sqlwhere)){
      $sqlwhere = ' and '.implode(' and ', $sqlwhere);
    }
    //数据库操作
    if($debug === 0){
      if($mode === 1){
        $this->exec("update $table set $set where 1=1 $sqlwhere");
        $return = $this->res;
      }else{
        $this->query("update $table set $set where 1=1 $sqlwhere");
        $return = true;
      }
      return $return;
    }else{
      echo "update $table set $set where 1=1 $sqlwhere";
      if($debug === 2){
        exit;
      }
    }
  }
  /**
  * 参数说明
  * string $table 数据库表
  * string/array $sqlwhere 删除条件,允许为空,两种传值模式
  * 普通模式:
  * 'and type = 1 and username like "%os%"'
  * 数组模式:
  * array('type = 1', 'username like "%os%"')
  * int $debug 是否开启调试,开启则输出sql语句
  * 0 不开启
  * 1 开启
  * 2 开启并终止程序
  * int $mode 返回类型
  * 0 无返回信息
  * 1 返回执行条目数
  */
  public function delete($table, $sqlwhere="", $debug=0, $mode=0){
    //参数处理
    if(is_array($sqlwhere)){
      $sqlwhere = ' and '.implode(' and ', $sqlwhere); //是字符串需自己加上and
    }
    //数据库操作
    if($debug === 0){
      if($mode === 1){
        $this->exec("delete from $table where 1=1 $sqlwhere");
        $return = $this->res;
      }else{
        $this->query("delete from $table where 1=1 $sqlwhere");
        $return = NULL;
      }
      return $return;
    }else{
      echo "delete from $table where 1=1 $sqlwhere";
      if($debug === 2){
        exit;
      }
    }
  }
}

 

//mysql 连接操作
$msyql_config=array(
  'dsn'=>'mysql:host=localhost;dbname=test',
  'username'=>'root',
  'password'=>'root'
);
$mysql=new Pdodb($msyql_config);
 

//可以操作数据库

/*
//查询
$sqlselect = array(
        "name like '%".$name."%'"
);
$data = $mysql->select('brand','*',$sqlselect);
*/

 

 

//增加

$post='特殊sdf〃符号';

$name = htmlspecialchars(addslashes($post));

$s = array(
    'name' => $name, 
    'con' => 1
);
$mysql->insert('brand', $s);

 

有些框架其实早就自带好的数据库连接,希望能帮助一些从头搭建自定义的,对于重构有自己独特风格,也请大家能指导学习一下,互相关注,学习!谢谢!

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

明雨星云

感谢,我会继续创作更优质作品

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值