溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

自制PHP框架之模型與數(shù)據(jù)庫(kù)的示例分析

發(fā)布時(shí)間:2021-07-24 13:57:47 來(lái)源:億速云 閱讀:186 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“自制PHP框架之模型與數(shù)據(jù)庫(kù)的示例分析”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“自制PHP框架之模型與數(shù)據(jù)庫(kù)的示例分析”這篇文章吧。

什么是模型?

我們的WEB系統(tǒng)一定會(huì)和各種數(shù)據(jù)打交道,實(shí)際開發(fā)過(guò)程中,往往一個(gè)類對(duì)應(yīng)了關(guān)系數(shù)據(jù)庫(kù)的一張或多張數(shù)據(jù)表,這里就會(huì)出現(xiàn)兩個(gè)問(wèn)題。

1.類和數(shù)據(jù)表,一方修改會(huì)導(dǎo)致另一方的修改,只要數(shù)據(jù)表結(jié)構(gòu)不定下來(lái),業(yè)務(wù)邏輯的開發(fā)幾乎沒(méi)法開工

2.獲取數(shù)據(jù)時(shí)會(huì)牽涉很多SQL語(yǔ)句的拼接,如果數(shù)據(jù)結(jié)構(gòu)變動(dòng),這些SQL需要改寫

假如要開發(fā)一個(gè)博客系統(tǒng),我們先設(shè)計(jì)兩個(gè)Model和兩張數(shù)據(jù)表

第一張數(shù)據(jù)表,表名是post,存儲(chǔ)了博客文章,數(shù)據(jù)如下:

自制PHP框架之模型與數(shù)據(jù)庫(kù)的示例分析

第二章數(shù)據(jù)表,表名是comment,存儲(chǔ)了博客文章的評(píng)論,數(shù)據(jù)如下:

自制PHP框架之模型與數(shù)據(jù)庫(kù)的示例分析

post和comment是一對(duì)多的關(guān)系,每一篇博客文章對(duì)應(yīng)了多條評(píng)論,每一條評(píng)論只屬于一篇文章。

Model類的設(shè)計(jì)之前,我們先定義好三個(gè)接口

interface IModel{
	public static function all();
	public static function get($id);
	public static function where($condition,$value);
}

定義Model類

class Model implements IModel{
	public static $table;
	
	public static $db;
	public function __construct(){
		self::$db=new MySQL();
	}
	
	public static function get($id){
		return self::where('id',$id);
	}
	
	public static function where($condition,$value){
		$sql=sprintf("select * from %s where %s='%s'",self::$table,$condition,$value);
		return self::$db->Query($sql);
	}

	public static function all(){
		$sql=sprintf("select * from %s",self::$table);
		return self::$db->Query($sql);
	}
}

這三個(gè)接口分別負(fù)責(zé)了三種查詢:遍歷查詢,條件查詢,按編號(hào)查詢,其實(shí)這三種接口的設(shè)計(jì)并不是最科學(xué)的,甚至get方法不過(guò)是where的一種特殊形式,但是這樣的設(shè)計(jì)并不影響我們工程,甚至也有助于理解,我們后期會(huì)對(duì)這段代碼做改動(dòng)。

之所以在Model類里就完成了SQL的拼接,就是希望在子類中不必重復(fù)再寫SQL。

然后是Post類的定義

class PostModel extends Model{	
	public $postid;
	public function __construct(){
		parent::__construct();
		parent::$table='post';
	}
}

還有Comment類的定義

class CommentModel extends Model{
	public $commentid;
	public function __construct(){
		parent::__construct();
		parent::$table='comment';
	}
}

我們可以在控制器的方法中寫這樣的代碼來(lái)完成調(diào)用數(shù)據(jù)

$post=new PostModel();
$post::all();
$arr=$post::get('1');
var_dump($arr);

$comment=new CommentModel();
$arr=$comment::get('2');
var_dump($arr);

我們發(fā)現(xiàn),這樣的代碼很簡(jiǎn)潔,但是問(wèn)題也隨之而來(lái),我們SQL查詢時(shí)候,還有很多復(fù)雜的聯(lián)表查詢?nèi)鏹oin操作,如此,拼接SQL還是不可避免的,這個(gè)復(fù)雜的問(wèn)題,我們放在后面解決。

模型與數(shù)據(jù)庫(kù)

先寫一個(gè)DB抽象類,規(guī)定類需要實(shí)現(xiàn)的方法

abstract class DB{
	
	private $IP;
	private $user;
	private $pwd;
	private $name;
	private $connection;
	
	abstract public function Execute($sql);
	abstract public function Query($sql);
}

這里以MySQL數(shù)據(jù)為例,當(dāng)然你也完全可以實(shí)現(xiàn)一套Sqlite數(shù)據(jù)庫(kù)的接口。

class MySQL extends DB{

	public function MySQL(){
		
		/*Config*/
		$this->IP='*';
		$this->ServerID='*';
		$this->ServerPassword='*';
		$this->DataBaseName='*';
		/*End of Config*/
		
		$this->connection=mysqli_connect($this->IP,$this->ServerID,$this->ServerPassword,$this->DataBaseName);
		
		if(!$this->connection){
			die('Could not connect'.$this->connection);
		}
		
		mysqli_query($this->connection,'set names utf8');
	}

	public function Execute($sql){
		return mysqli_query($this->connection,$sql);	
	}

	public function Query($sql){
		$result=mysqli_query($this->connection,$sql);
		$arr=array();
		while($row=mysqli_fetch_array($result)){
			$arr[]=$row;
		}
		return $arr;
	}
	public function Close(){
		mysqli_close($this->connection);
	}
}

以上是“自制PHP框架之模型與數(shù)據(jù)庫(kù)的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI