phpパッケージのmysqli類の完全な例


本論文の実例はphpパッケージのmysqli類を述べている。皆さんに参考にしてあげます。具体的には以下の通りです。
クラス:

<?php
header('content-type:text/html;charset=utf-8');
/*
             
(1)       -         new        
(2)       -                  
(3)       -         clone       
(4)       -               
*/
class ConnectMysqli{
  //     
  private static $dbcon=false;
  private $host;
  private $port;
  private $user;
  private $pass;
  private $db;
  private $charset;
  private $link;
  //       
  private function __construct($config=array()){
    $this->host = $config['host'] ? $config['host'] : 'localhost';
    $this->port = $config['port'] ? $config['port'] : '3306';
    $this->user = $config['user'] ? $config['user'] : 'root';
    $this->pass = $config['pass'] ? $config['pass'] : 'root';
    $this->db = $config['db'] ? $config['db'] : 'small2';
    $this->charset=isset($arr['charset']) ? $arr['charset'] : 'utf8';
    //     
    $this->db_connect();
    //     
    $this->db_usedb();
    //     
    $this->db_charset();
   }
   //     
   private function db_connect(){
    $this->link=mysqli_connect($this->host.':'.$this->port,$this->user,$this->pass);
    if(!$this->link){
      echo "       <br>";
      echo "    ".mysqli_errno($this->link)."<br>";
      echo "    ".mysqli_error($this->link)."<br>";
      exit;
    }
   }
   //     
    private function db_charset(){
     mysqli_query($this->link,"set names {$this->charset}");
    }
    //     
   private function db_usedb(){
     mysqli_query($this->link,"use {$this->db}");
   }
   //     
   private function __clone(){
     die('clone is not allowed');
   }
   //       
   public static function getIntance(){
     if(self::$dbcon==false){
      self::$dbcon=new self;
     }
     return self::$dbcon;
   }
   //  sql     
    public function query($sql){
     $res=mysqli_query($this->link,$sql);
     if(!$res){
      echo "sql      <br>";
      echo "     ".mysqli_errno($this->link)."<br>";
      echo "     ".mysqli_error($this->link)."<br>";
     }
     return $res;
   }
   //    
    public function p($arr){
      echo "<pre>";
      print_r($arr);
      echo "</pre>";
    }
    public function v($arr){
    echo "<pre>";
      var_dump($arr);
      echo "</pre>";
    }
    //        id
    public function getInsertid(){
     return mysqli_insert_id($this->link);
    }
   /**
    *       
    * @param
    * @return string or int
    */
    public function getOne($sql){
     $query=$this->query($sql);
      return mysqli_free_result($query);
    }
    //      ,return array     
    public function getRow($sql,$type="assoc"){
     $query=$this->query($sql);
     if(!in_array($type,array("assoc",'array',"row"))){
       die("mysqli_query error");
     }
     $funcname="mysqli_fetch_".$type;
     return $funcname($query);
    }
    //      ,              
    public function getFormSource($query,$type="assoc"){
    if(!in_array($type,array("assoc","array","row")))
    {
      die("mysqli_query error");
    }
    $funcname="mysqli_fetch_".$type;
    return $funcname($query);
    }
    //      ,    
    public function getAll($sql){
     $query=$this->query($sql);
     $list=array();
     while ($r=$this->getFormSource($query)) {
      $list[]=$r;
     }
     return $list;
    }
     /**
     *          
     * @param string $table   
     * @param string orarray $data [  ]
     * @return int      id
     */
     public function insert($table,$data){
     //    ,            
     $key_str='';
     $v_str='';
     foreach($data as $key=>$v){
      if(empty($v)){
       die("error");
     }
        //$key        s         
        $key_str.=$key.',';
        $v_str.="'$v',";
     }
     $key_str=trim($key_str,',');
     $v_str=trim($v_str,',');
     //        
     $sql="insert into $table ($key_str) values ($v_str)";
     $this->query($sql);
    //           ID 
     return $this->getInsertid();
   }
   /*
    *         
    * @param1 $table, $where=array('id'=>'1')      
    * @return       
    */
    public function deleteOne($table, $where){
      if(is_array($where)){
        foreach ($where as $key => $val) {
          $condition = $key.'='.$val;
        }
      } else {
        $condition = $where;
      }
      $sql = "delete from $table where $condition";
      $this->query($sql);
      //        
      return mysqli_affected_rows($this->link);
    }
    /*
    *         
    * @param1 $table, $where      
    * @return       
    */
    public function deleteAll($table, $where){
      if(is_array($where)){
        foreach ($where as $key => $val) {
          if(is_array($val)){
            $condition = $key.' in ('.implode(',', $val) .')';
          } else {
            $condition = $key. '=' .$val;
          }
        }
      } else {
        $condition = $where;
      }
      $sql = "delete from $table where $condition";
      $this->query($sql);
      //        
      return mysqli_affected_rows($this->link);
    }
   /**
    * [    description]
    * @param [type] $table [  ]
    * @param [type] $data [  ]
    * @param [type] $where [  ]
    * @return [type]
    */
   public function update($table,$data,$where){
     //    ,            
     $str='';
    foreach($data as $key=>$v){
     $str.="$key='$v',";
    }
    $str=rtrim($str,',');
    //  SQL  
    $sql="update $table set $str where $where";
    $this->query($sql);
    //        
    return mysqli_affected_rows($this->link);
   }
}
?>

使い方のテスト:

//mysqli  
$db=ConnectMysqli::getIntance();
//var_dump($db);
/*$sql="select * from acticle";
$list=$db->getAll($sql);
$db->p($list);*/
/*$sql="select * from acticle where acticle_id=95";
$list=$db->getRow($sql);
$db->p($list);
*/
/*$sql="select title from acticle";
$list=$db->getOne($sql);
$db->p($list);  */
//$list=$db->insert("users",$_POST);
//$del=$db->deleteOne("users","id=29");
//$del=$db->deleteAll("users","id in(27,28)");
//$up=$db->update("users",$_POST,"id=27");
//print_R($list);

PHPについてもっと興味がある読者は、本駅のテーマを見てもいいです。「php+mysqliデータベースプログラムの設計技術のまとめ」、「php対象プログラム設計入門教程」、「PHP配列(Aray)操作テクニック大全」、「PHP基本文法入門教程」、「PHP演算と演算子の使い方のまとめ」、「PHPネットワークプログラミング技術のまとめ」、「php文字列(string)使い方のまとめ」、「php+mysqlデータベース操作入門教程」および「phpよくあるデータベースの操作技巧のまとめ
本論文で述べたように、皆さんのPHPプログラムの設計に役に立ちますように。