真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php數(shù)據(jù)庫面向?qū)ο蠓庋b,php類封裝

PHP MYSQL面向?qū)ο缶幊?,不明白其具體意義何在?提高了性能、效率、重用?

把 mysql 與 php 的鏈接看做一個對象,這個對象負責php與mysql的交互。

創(chuàng)新互聯(lián)建站云計算的互聯(lián)網(wǎng)服務(wù)提供商,擁有超過13年的服務(wù)器租用、多線服務(wù)器托管、云服務(wù)器、虛擬主機、網(wǎng)站系統(tǒng)開發(fā)經(jīng)驗,已先后獲得國家工業(yè)和信息化部頒發(fā)的互聯(lián)網(wǎng)數(shù)據(jù)中心業(yè)務(wù)許可證。專業(yè)提供云主機、虛擬主機、域名注冊、VPS主機、云服務(wù)器、香港云服務(wù)器、免備案服務(wù)器等。

其意義在于把數(shù)據(jù)庫的鏈接抽象成了對象,抽象的意義在于化繁為簡。

普通的那種方式,更像是一種行為,全都是行為由誰發(fā)出呢?由php語言本身?

面向?qū)ο蟮姆绞?,則有這個對象發(fā)出!

一個關(guān)于PHP面向過程和面向?qū)ο蟮膯栴}

面向?qū)ο螅前岩恍┏S玫牟僮鬟M行類封裝起來,方便調(diào)用,需要用的地方,調(diào)用一下即可,這樣,開發(fā)方便,維護也方便!修改這個封裝的類,即可達到修改全站的目的!

面向過程,是在每一個地方都使用單獨的代碼進行操作,這樣開發(fā)的時候重復(fù)累贅,維護的時候也很累,你修改了哪里,就只在哪里起作用!

比如,初學php,最基本的連接數(shù)據(jù)庫和查詢數(shù)據(jù)庫都會這樣寫:

?php

$Con?=?mysql_connect(.........);

mysql_query('set?names?utf8');

mysql_select_db(....);

$query?=?mysql_query(?$sql?);

while(?$Rs?=?mysql_fetch_aray(?$query?)?)?{

echo?$Rs[0];?

}

等等這樣,操作10次數(shù)據(jù)庫,就寫10次這樣的代碼!

而如果封裝一個類,意義就不同了!

?php

class?mysql{

var?$Con;

var?$table;?

public?ConnEct(?$local,?$root,?$pass,?$base,?$code){

$this?-?Con?=?mysql_connect(?$local,?$root,?$pass);

mysql_query('set?names?'?.?$code);

mysql_select_db(?$base?);

}??????

public?Tab(?$Table)?{

$this?-?table?=?$Table;

return?$this;???

}????

public?Select(){

$rs?=?mysql_query('select?*?from?'?.?$this?-?table)

while(?$Rs?=?mysql_fetch_array(?$rs?)?{

$Rule[]?=?$Rs;?

}??

return?$Rule;?

}????

}

把上面的代碼保存成一個文件,比如是mysql.php,在需要操作數(shù)據(jù)庫的地方引入這個文件,那么要查詢數(shù)據(jù)庫的一個表就非常方便了!

?php

include_once?'mysql.php';

$Mysql?=?new?mysql;?//實例化一個類;

$Mysql?-?ConnEct('localhost',?'root',?123456,?'table',?'utf8');//連接數(shù)據(jù)庫

$Resul?=?$Mysql?-??Tab('user')?-?Select();//查詢user表,并返回數(shù)組結(jié)果

print_r(?$Resul?);?//打印這個數(shù)組

以上個人見解,僅供參考

求PHP數(shù)據(jù)庫封裝類操作代碼

?php

class MySQL{

private $host; //服務(wù)器地址

private $name; //登錄賬號

private $pwd; //登錄密碼

private $dBase; //數(shù)據(jù)庫名稱

private $conn; //數(shù)據(jù)庫鏈接資源

private $result; //結(jié)果集

private $msg; //返回結(jié)果

private $fields; //返回字段

private $fieldsNum; //返回字段數(shù)

private $rowsNum; //返回結(jié)果數(shù)

private $rowsRst; //返回單條記錄的字段數(shù)組

private $filesArray = array(); //返回字段數(shù)組

private $rowsArray = array(); //返回結(jié)果數(shù)組

private $charset='utf8'; //設(shè)置操作的字符集

private $query_count=0; //查詢結(jié)果次數(shù)

static private $_instance; //存儲對象

//初始化類

private function __construct($host='',$name='',$pwd='',$dBase=''){

if($host != '') $this-host = $host;

if($name != '') $this-name = $name;

if($pwd != '') $this-pwd = $pwd;

if($dBase != '') $this-dBase = $dBase;

$this-init_conn();

}

//防止被克隆

private function __clone(){}

public static function getInstance($host='',$name='',$pwd='',$dBase=''){

if(FALSE == (self::$_instance instanceof self)){

self::$_instance = new self($host,$name,$pwd,$dBase);

}

return self::$_instance;

}

public function __set($name,$value){

$this-$name=$value;

}

public function __get($name){

return $this-$name;

}

//鏈接數(shù)據(jù)庫

function init_conn(){

$this-conn=@mysql_connect($this-host,$this-name,$this-pwd) or die('connect db fail !');

@mysql_select_db($this-dBase,$this-conn) or die('select db fail !');

mysql_query("set names ".$this-charset);

}

//查詢結(jié)果

function mysql_query_rst($sql){

if($this-conn == '') $this-init_conn();

$this-result = @mysql_query($sql,$this-conn);

$this-query_count++;

}

//取得字段數(shù)

function getFieldsNum($sql){

$this-mysql_query_rst($sql);

$this-fieldsNum = @mysql_num_fields($this-result);

}

//取得查詢結(jié)果數(shù)

function getRowsNum($sql){

$this-mysql_query_rst($sql);

if(mysql_errno() == 0){

return @mysql_num_rows($this-result);

}else{

return '';

}

}

//取得記錄數(shù)組(單條記錄)

function getRowsRst($sql,$type=MYSQL_BOTH){

$this-mysql_query_rst($sql);

if(empty($this-result)) return '';

if(mysql_error() == 0){

$this-rowsRst = mysql_fetch_array($this-result,$type);

return $this-rowsRst;

}else{

return '';

}

}

//取得記錄數(shù)組(多條記錄)

function getRowsArray($sql,$type=MYSQL_BOTH){

!empty($this-rowsArray) ? $this-rowsArray=array() : '';

$this-mysql_query_rst($sql);

if(mysql_errno() == 0){

while($row = mysql_fetch_array($this-result,$type)) {

$this-rowsArray[] = $row;

}

return $this-rowsArray;

}else{

return '';

}

}

//更新、刪除、添加記錄數(shù)

function uidRst($sql){

if($this-conn == ''){

$this-init_conn();

}

@mysql_query($sql);

$this-rowsNum = @mysql_affected_rows();

if(mysql_errno() == 0){

return $this-rowsNum;

}else{

return '';

}

}

//返回最近插入的一條數(shù)據(jù)庫的id值

function returnRstId($sql){

if($this-conn == ''){

$this-init_conn();

}

@mysql_query($sql);

if(mysql_errno() == 0){

return mysql_insert_id();

}else{

return '';

}

}

//獲取對應(yīng)的字段值

function getFields($sql,$fields){

$this-mysql_query_rst($sql);

if(mysql_errno() == 0){

if(mysql_num_rows($this-result) 0){

$tmpfld = @mysql_fetch_row($this-result);

$this-fields = $tmpfld[$fields];

}

return $this-fields;

}else{

return '';

}

}

//錯誤信息

function msg_error(){

if(mysql_errno() != 0) {

$this-msg = mysql_error();

}

return $this-msg;

}

//釋放結(jié)果集

function close_rst(){

mysql_free_result($this-result);

$this-msg = '';

$this-fieldsNum = 0;

$this-rowsNum = 0;

$this-filesArray = '';

$this-rowsArray = '';

}

//關(guān)閉數(shù)據(jù)庫

function close_conn(){

$this-close_rst();

mysql_close($this-conn);

$this-conn = '';

}

//取得數(shù)據(jù)庫版本

function db_version() {

return mysql_get_server_info();

}

}

PHP訪問MYSQL數(shù)據(jù)庫封裝類(附函數(shù)說明)

復(fù)制代碼

代碼如下:

?php

/*

MYSQL

數(shù)據(jù)庫訪問封裝類

MYSQL

數(shù)據(jù)訪問方式,php4支持以mysql_開頭的過程訪問方式,php5開始支持以mysqli_開頭的過程和mysqli面向?qū)ο?/p>

訪問方式,本封裝類以mysql_封裝

數(shù)據(jù)訪問的一般流程:

1,連接數(shù)據(jù)庫

mysql_connect

or

mysql_pconnect

2,選擇數(shù)據(jù)庫

mysql_select_db

3,執(zhí)行SQL查詢

mysql_query

4,處理返回的數(shù)據(jù)

mysql_fetch_array

mysql_num_rows

mysql_fetch_assoc

mysql_fetch_row

etc

*/

class

db_mysql

{

var

$querynum

=

;

//當前頁面進程查詢數(shù)據(jù)庫的次數(shù)

var

$dblink

;

//數(shù)據(jù)庫連接資源

//鏈接數(shù)據(jù)庫

function

connect($dbhost,$dbuser,$dbpw,$dbname='',$dbcharset='utf-8',$pconnect=0

,

$halt=true)

{

$func

=

empty($pconnect)

?

'mysql_connect'

:

'mysql_pconnect'

;

$this-dblink

=

@$func($dbhost,$dbuser,$dbpw)

;

if

($halt

!$this-dblink)

{

$this-halt("無法鏈接數(shù)據(jù)庫!");

}

//設(shè)置查詢字符集

mysql_query("SET

character_set_connection={$dbcharset},character_set_results={$dbcharset},character_set_client=binary",$this-dblink)

;

//選擇數(shù)據(jù)庫

$dbname

@mysql_select_db($dbname,$this-dblink)

;

}

//選擇數(shù)據(jù)庫

function

select_db($dbname)

{

return

mysql_select_db($dbname,$this-dblink);

}

//執(zhí)行SQL查詢

function

query($sql)

{

$this-querynum++

;

return

mysql_query($sql,$this-dblink)

;

}

//返回最近一次與連接句柄關(guān)聯(lián)的INSERT,UPDATE

或DELETE

查詢所影響的記錄行數(shù)

function

affected_rows()

{

return

mysql_affected_rows($this-dblink)

;

}

//取得結(jié)果集中行的數(shù)目,只對select查詢的結(jié)果集有效

function

num_rows($result)

{

return

mysql_num_rows($result)

;

}

//獲得單格的查詢結(jié)果

function

result($result,$row=0)

{

return

mysql_result($result,$row)

;

}

//取得上一步

INSERT

操作產(chǎn)生的

ID,只對表有AUTO_INCREMENT

ID的操作有效

function

insert_id()

{

return

($id

=

mysql_insert_id($this-dblink))

=

?

$id

:

$this-result($this-query("SELECT

last_insert_id()"),

0);

}

//從結(jié)果集提取當前行,以數(shù)字為key表示的關(guān)聯(lián)數(shù)組形式返回

function

fetch_row($result)

{

return

mysql_fetch_row($result)

;

}

//從結(jié)果集提取當前行,以字段名為key表示的關(guān)聯(lián)數(shù)組形式返回

function

fetch_assoc($result)

{

return

mysql_fetch_assoc($result);

}

//從結(jié)果集提取當前行,以字段名和數(shù)字為key表示的關(guān)聯(lián)數(shù)組形式返回

function

fetch_array($result)

{

return

mysql_fetch_array($result);

}

//關(guān)閉鏈接

function

close()

{

return

mysql_close($this-dblink)

;

}

//輸出簡單的錯誤html提示信息并終止程序

function

halt($msg)

{

$message

=

"html\nhead\n"

;

$message

.=

"meta

content='text/html;charset=gb2312'\n"

;

$message

.=

"/head\n"

;

$message

.=

"body\n"

;

$message

.=

"數(shù)據(jù)庫出錯:".htmlspecialchars($msg)."\n"

;

$message

.=

"/body\n"

;

$message

.=

"/html"

;

echo

$message

;

exit

;

}

}

?


標題名稱:php數(shù)據(jù)庫面向?qū)ο蠓庋b,php類封裝
本文地址:http://weahome.cn/article/phhppg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部