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

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

php原生單例數(shù)據(jù)庫 php數(shù)據(jù)庫源碼

單例模式 數(shù)據(jù)庫 php 怎么用

搭建好php開發(fā)環(huán)境,這個就不多講了,能找單例模式的應(yīng)該有一定的php基礎(chǔ)

成都創(chuàng)新互聯(lián)公司主要從事做網(wǎng)站、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)彌渡,10多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792

2

新建一個database.php文件存放數(shù)據(jù)庫信息

?php

$db = array(

'host'='localhost',//地址

'user'='root',//數(shù)據(jù)庫用戶名

'password'='root',//數(shù)據(jù)庫密碼

'database'='ceshi',//數(shù)據(jù)庫名

)

?

3

新建Mysql.class.php編寫數(shù)據(jù)庫連接類操作類添加需要的屬性和構(gòu)造方法

構(gòu)造函數(shù)加載數(shù)據(jù)庫配置文件連接數(shù)據(jù)庫

?php

class db {

public $conn;

public static $sql;

public static $instance=null;

private function __construct(){

require_once('database.php');

$this-conn = mysqli_connect($db['host'],$db['user'],$db['password']);

if(!mysqli_select_db($this-conn,$db['database'])){

echo "失敗";

};

mysqli_query($this-conn,'set names utf8');

}

}

?這樣試試吧如果你對php這類有興趣的話,可以和我一樣在后盾人經(jīng)常看看教材,自己多看幾遍,慢慢的以后就明白了,希望能幫到你,給個采納吧謝謝

php中連接數(shù)據(jù)庫,使用單例模式遇到的問題

當(dāng)然是重新連接了,你是跳轉(zhuǎn)不是包含。

跳轉(zhuǎn)兩者之間共享值要專門的傳值操作,cookie\

session\

POST/GET

\靜態(tài)輸出

PHP基于單例模式實現(xiàn)的數(shù)據(jù)庫操作基類

本文實例講述了PHP基于單例模式實現(xiàn)的數(shù)據(jù)庫操作基類。分享給大家供大家參考,具體如下:

配置文件:

?php

$db

=

array(

'host'='localhost',

'user'='root',

'password'='',

'database'='test',

)

?

php

數(shù)據(jù)庫基類:

?php

class

db

{

public

$conn;

public

static

$sql;

public

static

$instance=null;

private

function

__construct(){

require_once('db.config.php');

$this-conn

=

mysql_connect($db['host'],$db['user'],$db['password']);

if(!mysql_select_db($db['database'],$this-conn)){

echo

"失敗";

};

mysql_query('set

names

utf8',$this-conn);

}

public

static

function

getInstance(){

if(is_null(self::$instance)){

self::$instance

=

new

db;

}

return

self::$instance;

}

/**

*

查詢數(shù)據(jù)庫

*/

public

function

select($table,$condition=array(),$field

=

array()){

$where='';

if(!empty($condition)){

foreach($condition

as

$k=$v){

$where.=$k."='".$v."'

and

";

}

$where='where

'.$where

.'1=1';

}

$fieldstr

=

'';

if(!empty($field)){

foreach($field

as

$k=$v){

$fieldstr.=

$v.',';

}

$fieldstr

=

rtrim($fieldstr,',');

}else{

$fieldstr

=

'*';

}

self::$sql

=

"select

{$fieldstr}

from

{$table}

{$where}";

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

$resuleRow

=

array();

$i

=

0;

while($row=mysql_fetch_assoc($result)){

foreach($row

as

$k=$v){

$resuleRow[$i][$k]

=

$v;

}

$i++;

}

return

$resuleRow;

}

/**

*

添加一條記錄

*/

public

function

insert($table,$data){

$values

=

'';

$datas

=

'';

foreach($data

as

$k=$v){

$values.=$k.',';

$datas.="'$v'".',';

}

$values

=

rtrim($values,',');

$datas

=

rtrim($datas,',');

self::$sql

=

"INSERT

INTO

{$table}

({$values})

VALUES

({$datas})";

if(mysql_query(self::$sql)){

return

mysql_insert_id();

}else{

return

false;

};

}

/**

*

修改一條記錄

*/

public

function

update($table,$data,$condition=array()){

$where='';

if(!empty($condition)){

foreach($condition

as

$k=$v){

$where.=$k."='".$v."'

and

";

}

$where='where

'.$where

.'1=1';

}

$updatastr

=

'';

if(!empty($data)){

foreach($data

as

$k=$v){

$updatastr.=

$k."='".$v."',";

}

$updatastr

=

'set

'.rtrim($updatastr,',');

}

self::$sql

=

"update

{$table}

{$updatastr}

{$where}";

return

mysql_query(self::$sql);

}

/**

*

刪除記錄

*/

public

function

delete($table,$condition){

$where='';

if(!empty($condition)){

foreach($condition

as

$k=$v){

$where.=$k."='".$v."'

and

";

}

$where='where

'.$where

.'1=1';

}

self::$sql

=

"delete

from

{$table}

{$where}";

return

mysql_query(self::$sql);

}

public

static

function

getLastSql(){

echo

self::$sql;

}

}

$db

=

db::getInstance();

//$list

=

$db-select('demo',array('name'='tom','password'='ds'),array('name','password'));

//echo

$db-insert('demo',array('name'='腳本之家','password'='123'));

//echo

$db-update('demo',array("name"='xxx',"password"='123'),array('id'=1));

echo

$db-delete('demo',array('id'='2'));

db::getLastSql();

echo

"pre";

?

更多關(guān)于PHP操作數(shù)據(jù)庫相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php+mysql數(shù)據(jù)庫操作入門教程》、《PHP基于pdo操作數(shù)據(jù)庫技巧總結(jié)》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對大家PHP程序設(shè)計有所幫助。

怎樣試用PHP原生語句查詢數(shù)據(jù)庫

原生SQL查詢有 query() 和 execute() 兩個方法:

query():用于 SQL 查詢操作,并返回符合查詢條件的數(shù)據(jù)集

execute():更新和寫入數(shù)據(jù)的 SQL 操作,返回影響的記錄數(shù)

query()

query() 方法是用于 SQL 查詢操作,和select()方法一樣返回符合查詢條件的數(shù)據(jù)集。

例子:

public function read(){

// 實例化一個空模型,沒有對應(yīng)任何數(shù)據(jù)表

$Dao = M();

//或者使用 $Dao = new Model();

$list = $Dao-query("select * from user where uid5");

if($list){

$this-assign('list', $list );

$this-display();

} else {

$this-error($Dao-getError());

}

}

對于 query() 方法返回的數(shù)據(jù)集,跟 select() 一樣,可以在模板里直接循環(huán)輸出。

execute()

execute() 方法用于更新和寫入數(shù)據(jù)的 SQL 操作(注:非查詢操作,無返回數(shù)據(jù)集),返回影響的記錄數(shù)。

例子:

public function read(){

header("Content-Type:text/html; charset=utf-8");

// 實例化一個空模型,沒有對應(yīng)任何數(shù)據(jù)表

$Dao = M();

//或者使用 $Dao = new Model();

$num = $Dao-execute("update user set email = '12345@xxx.com' where uid=3");

if($num){

echo '更新 ',$num,' 條記錄。';

}else{

echo '無記錄更新';

}

}

如果查詢比較復(fù)雜或一些特殊的數(shù)據(jù)操作不能通過 ThinkPHP 內(nèi)置的 ORM 和 ActiveRecord 模式實現(xiàn)時,就可以通過直接使用原生 SQL 查詢來實現(xiàn)。

注意:以上都是 user 沒有表前綴的例子,在查詢語句中,查詢的表應(yīng)該寫實際的表名字(包括前綴)。

PHP設(shè)計模式之單例模式

單例模式

:使得類的一個對象成為系統(tǒng)中的唯一實例.

PHP中使用單例模式最常見的就是數(shù)據(jù)庫操作了。避免在系統(tǒng)中有多個連接數(shù)據(jù)庫的操作,浪費系統(tǒng)資源的現(xiàn)象,就可以使用單例模式。每次對數(shù)據(jù)庫操作都使用一個實例。

簡單示例

class

AClass

{

//

用來存儲自己實例

public

static

$instance;

//

私有化構(gòu)造函數(shù),防止外界實例化對象

private

function

__construct()

{}

//

私有化克隆函數(shù),防止外界克隆對象

private

function

__clone()

{}

//

靜態(tài)方法,單例訪問統(tǒng)一入口

public

static

function

getInstance()

{

if

(!(self::$instance

instanceof

self)){

self::$instance

=

new

self();

}

return

self::$instance;

}

//

test

public

function

test()

{

return

"done";

}

//

私有化克隆函數(shù),防止外界克隆對象

private

function

__clone()

{}

}

class

BClass

extends

AClass{

}

//

獲取實例

$aclass

=

AClass::getInstance();

$bclass

=

BClass::getInstance();

//

調(diào)用方法

echo

$aclass-test();

對一些比較大型的應(yīng)用來說,可能連接多個數(shù)據(jù)庫,那么不同的數(shù)據(jù)庫公用一個對象可能會產(chǎn)生問題,比如連接句柄的分配等,我們可以通過給$instance變成數(shù)組,通過不同的參數(shù)來控制

簡單示例

class

DB

{

//

用來存儲自己實例

public

static

$instance

=

array();

public

$conn;

//

私有化構(gòu)造函數(shù),防止外界實例化對象

private

function

__construct($host,

$username,

$password,

$dbname,

$port)

{

$this-conn

=

new

mysqli($host,

$username,

$password,

$dbname,

$port);

}

//

靜態(tài)方法,單例訪問統(tǒng)一入口

public

static

function

getInstance($host,

$username,

$password,

$dbname,

$port)

{

$key

=

$host.":".$port;

if

(!(self::$instance[$key]

instanceof

self)){

self::$instance[$key]

=

new

self($host,

$username,

$password,

$dbname,

$port);#實例化

}

return

self::$instance[$key];

}

//query

public

function

query($ql)

{

return

$this-conn-query($sql);

}

//

私有化克隆函數(shù),防止外界克隆對象

private

function

__clone()

{}

//釋放資源

public

function

__destruct(){

$this-conn-close();

}

}

什么是PHP單例模式

PHP單例模式,就是一個對象只被生成一次,但該對象可以被其它眾多對象使用。單例模式使用最多的場景,是數(shù)據(jù)庫連接操作。我們知道,生成一個對象的操作是用new函數(shù)來實現(xiàn),但是new對象都會消耗內(nèi)存,而且有時候?qū)ν粋€對象,在不同文件中可能會生成多次,這就造成了系統(tǒng)資源的浪費。然而使用單例模式,則可以很好的避免這種情況。

以數(shù)據(jù)庫為例,假設(shè)我們有一個數(shù)據(jù)庫的類,要實現(xiàn)數(shù)據(jù)庫連接。如果不使用單例模式,那么在很多PHP文件中,我們可能到要創(chuàng)建這樣的一個連接,這其實是對資源的很大浪費。那么下面介紹單例模式實現(xiàn)方法:

class?Database

{

//定義一個屬性,該屬性是靜態(tài)的保護(hù)或私有屬性

protected?static?$db;

//這里構(gòu)造函數(shù)一定要是私有方法

private?function?__construct()

{??

}

//聲明一個獲取類實例的方法

static?function?getInstace()

{??

if(self::$db)?{

return?self::$db;

}else?{

//生成自己

self::$db?=?new?self();

return?self::$db;

}??

}

}

//錯誤調(diào)用方法

//用new實例化private標(biāo)記構(gòu)造函數(shù)的類會報錯

$db?=?new?Database();

//正確獲取實例方法

$db?=?Database::getInstace();

使用單例模式的好處是,當(dāng)你在其他地方也要使用到這個類,比如上面的數(shù)據(jù)庫類。那么你可以在其它地方直接調(diào)用?Database::getInstace(),而且該實例只會被生成一次,不會被重復(fù)生成,所以不會浪費系統(tǒng)資源。

簡單的說,單例模式生成的實例只被生成一次,而且只負(fù)責(zé)一個特定的任務(wù)。

使用單例模式有下面幾個要求:

1.構(gòu)造函數(shù)需要標(biāo)記為private(訪問控制:防止外部代碼使用new操作符創(chuàng)建對象),單例類不能在其他類中實例化,只能被其自身實例化;

2.擁有一個保存類的實例的靜態(tài)成員變量;

3.擁有一個訪問這個實例的公共的靜態(tài)方法(常用getInstance()方法進(jìn)行實例化單例類,通過instanceof操作符可以檢測到類是否已經(jīng)被實例化);

4.如果嚴(yán)謹(jǐn)?shù)脑?,還需要創(chuàng)建__clone()方法防止對象被復(fù)制(克?。?。(我上面沒創(chuàng)建)

使用單例模式好處,總結(jié):

1、php的應(yīng)用主要在于數(shù)據(jù)庫應(yīng)用, 所以一個應(yīng)用中會存在大量的數(shù)據(jù)庫操作, 使用單例模式, 則可以避免大量的new 操作消耗的資源。

2、如果系統(tǒng)中需要有一個類來全局控制某些配置信息, 那么使用單例模式可以很方便的實現(xiàn). 這個可以參看ZF的FrontController部分。

3、在一次頁面請求中, 便于進(jìn)行調(diào)試。

參考:


分享題目:php原生單例數(shù)據(jù)庫 php數(shù)據(jù)庫源碼
分享URL:http://weahome.cn/article/doodgjg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部