종합적인 데이터베이스 운영 PHP 클래스
풀어 주다: 2016-07-25 08:42:25
- class database
- {
- private $hostname;
- private $user;
- private $pass;
- private $dbname;
- private $linkflag;
- private $charset;
-
- function __construct()
- {
- $this->hostname="localhost";
- $this->user="root";
- $this->pass="111";
- $this->dbname="";
- $this->charset="utf8"; //gb2312 GBK utf8
- $this->linkflag=mysql_connect($this->hostname,$this->user,$this->pass);
- mysql_select_db($this->dbname,$this->linkflag) or die($this->error());
- mysql_query("set names ".$this->charset);
- }
-
- function __set($property_name,$value)
- {
- return $this->$property_name=$value;
- }
-
- function __get($property_name)
- {
- if(isset($this->$property_name))
- {
- return $this->$property_name;
- }
- else return null;
- }
-
- function __call($function_name, $args)
- {
- echo "
你所调用的方法 $function_name 不存在 n";
- }
-
- function query($sql)
- {
- $res=mysql_query($sql) or die($this->error());
- return $res;
- }
-
- function fetch_array($res)
- {
- return mysql_fetch_array($res);
- }
-
- function fetch_object($res)
- {
- return mysql_fetch_object($res);
- }
-
- function fetch_obj_arr($sql)
- {
- $obj_arr=array();
- $res=$this->query($sql);
- while($row=mysql_fetch_object($res))
- {
- $obj_arr[]=$row;
- }
- return $obj_arr;
- }
-
- function error()
- {
- if($this->linkflag)
- {
- return mysql_error($this->linkflag);
- }
- else return mysql_error();
- }
-
- function errno()
- {
- if($this->linkflag)
- {
- return mysql_errno($this->linkflag);
- }
- else return mysql_errno();
- }
-
- function affected_rows()
- {
- return mysql_affected_rows($this->linkflag);
- }
-
- function num_rows($sql)
- {
- $res=$this->execute($sql);
- return mysql_num_rows($res);
- }
-
- function num_fields($res)
- {
- return mysql_num_fields($res);
- }
-
- function insert_id()
- {
- $previous_id=mysql_insert_id($this->linkflag);
- return $previous_id;
- }
-
- function result($res,$row,$field=null)
- {
- if($field===null)
- {
- $res=mysql_result($res,$row);
- }
- else $res=mysql_result($res,$row,$field);
- return $res;
- }
-
- function version()
- {
- return mysql_get_server_info($this->linkflag);
- }
-
- function data_seek($res,$rowNum)
- {
- return mysql_data_seek($res,$rowNum);
- }
-
- function __destruct()
- {
- //mysql_close($this->linkflag);
- }
-
-
- }
-
-
- ?>
复制代码
|
PHP
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31