>  기사  >  백엔드 개발  >  一个简单记事本php操作mysql辅助类创建

一个简单记事本php操作mysql辅助类创建

WBOY
WBOY원래의
2016-06-23 13:18:141056검색

//SqlHelper.class.php<?phpclass SqlHelper{    public $conn;    public $host="localhost";    public $user="root";    public $passwrd="passwd";    public $db="notebook";    function __construct(){        $this->conn=mysql_connect($this->host,$this->user,$this->passwrd);        if(!$this->conn){           die("连接失败".mysql_error());         }        mysql_select_db($this->db);        mysql_query("set names utf8");    }    //增删改    function execute_dml($sql){       $b=mysql_query($sql);       if(!$b){           die("操作失败".mysql_error());       }else if(mysql_affected_rows($this->conn)>0){           return 1;       }else{           return 2;       }    }    //查询,多条结果    function execute_dql($sql){        $arr=array();        $res=mysql_query($sql);        $i=0;        while($row=mysql_fetch_assoc($res)){            $arr[$i++]=$row;        }        mysql_free_result($res);        return $arr;    }    //查询,单条结果    function execute_dql2($sql){        $res=mysql_query($sql);        return $res;    }    function conn_close(){        if(!empty($this->conn)){            mysql_close($this->conn);        }    }  }


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.