本篇文章為大家展示了PHP的基礎(chǔ)知識(shí)點(diǎn)和基本用法,代碼簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
定制設(shè)計(jì)可以根據(jù)自己的需求進(jìn)行定制,成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)構(gòu)思過(guò)程中功能建設(shè)理應(yīng)排到主要部位公司成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)的運(yùn)用實(shí)際效果公司網(wǎng)站制作網(wǎng)站建立與制做的實(shí)際意義
簡(jiǎn)介:spl是php的一個(gè)標(biāo)準(zhǔn)庫(kù)。
官方文檔:http://php.net/manual/zh/book.spl.php
push('data1');//入棧(先進(jìn)后出) $stack->push('data2');//入棧 $stack->push('data3');//入棧 echo $stack->pop();//出棧 echo $stack->pop();//出棧 echo $stack->pop();//出棧 /** *隊(duì)列(先進(jìn)先出) */ $queue = new SplQueue(); $queue->enqueue('data4');//入隊(duì)列 $queue->enqueue('data5');//入隊(duì)列 $queue->enqueue('data6');//入隊(duì)列 echo $queue->dequeue();//出隊(duì)列 echo $queue->dequeue();//出隊(duì)列 echo $queue->dequeue();//出隊(duì)列 echo $queue->dequeue();//出隊(duì)列 /** * 堆 */ $heap = new SplMinHeap(); $heap->insert('data8');//入堆 $heap->insert('data9');//入堆 $heap->insert('data10');//入堆 echo $heap->extract();//從堆中提取數(shù)據(jù) echo $heap->extract();//從堆中提取數(shù)據(jù) echo $heap->extract();//從堆中提取數(shù)據(jù) /** * 固定數(shù)組(不論使不使用,都會(huì)分配相應(yīng)的內(nèi)存空間) */ $array = new SplFixedArray(15); $array['0'] = 54; $array['6'] = 69; $array['10'] = 32; var_dump($array);
1、入口文件 index.php
where('uid < 100000')->->order('uid desc')->limit(100);
2、自動(dòng)加載類(lèi) Loader.php
3、數(shù)據(jù)庫(kù)類(lèi)Database.php
注:只是原理,并沒(méi)有對(duì)方法進(jìn)行具體的封裝,具體的封裝還是看個(gè)人喜好去定鏈?zhǔn)讲樵?xún)的風(fēng)格。
其實(shí)就是對(duì)傳過(guò)來(lái)的條件進(jìn)行重新的底層封裝,然后再把當(dāng)前對(duì)象返回,使得可以不斷的鏈?zhǔn)讲樵?xún)。
三、PHP魔術(shù)方法的使用
在php設(shè)計(jì)模式中,會(huì)涉及到很多魔術(shù)方法的使用,這里也對(duì)經(jīng)常會(huì)用到的魔術(shù)方法進(jìn)行簡(jiǎn)單總結(jié)。
1、框架入口文件 index.php
title = 'xiaobudiu'; //當(dāng)對(duì)一個(gè)不存在的類(lèi)屬性賦值時(shí),會(huì)自動(dòng)調(diào)用類(lèi)中定義的__set() echo $obj->title; //當(dāng)調(diào)用一個(gè)不存在的類(lèi)屬性時(shí),會(huì)自動(dòng)調(diào)用類(lèi)中定義的__get() # __call 和 __callStatic 對(duì)不存在或者權(quán)限不夠的類(lèi)方法進(jìn)行接管 $obj->getUserInfo('1000068'); //當(dāng)調(diào)用一個(gè)不存在的類(lèi)方法時(shí),會(huì)調(diào)用__call(),并自動(dòng)將當(dāng)前方法名和參數(shù)傳到__call方法中 \Extend\Object::getOpenId('1000068'); //當(dāng)調(diào)用一個(gè)不存在的類(lèi)靜態(tài)方法時(shí),會(huì)調(diào)用__callStatic(),并自動(dòng)將當(dāng)前方法名和參數(shù)傳遞到__callStatic方法中 # echo或print對(duì)象時(shí),由__toString 接管 echo $obj; //當(dāng)echo或print一個(gè)對(duì)象時(shí),會(huì)自動(dòng)調(diào)用類(lèi)中定義的__toString方法 # 在php中,如果我們把一個(gè)對(duì)象當(dāng)成函數(shù)用,則由__invoke()接管 $obj('xiaobudiu');//當(dāng)我們將一個(gè)對(duì)象當(dāng)成函數(shù)用的時(shí)候,會(huì)自動(dòng)調(diào)用當(dāng)前類(lèi)中定義的__invoke()方法2、 Extend/Object.php
this is __invoke func"; } }四、三種基礎(chǔ)設(shè)計(jì)模式
1、工廠模式
通過(guò)傳入?yún)?shù)的不同,來(lái)實(shí)例化不同的類(lèi)。
index.php
'127.0.0.1', 'pass' => 'myredis&&&' ); //工廠模式創(chuàng)建cache對(duì)象 $cache = Extend\CacheFactory::getCacheObj('redis',$config); var_dump($cache);Extend/CacheFactory.php
2、單例模式
保證一個(gè)類(lèi)只實(shí)例化一個(gè)類(lèi)對(duì)象,進(jìn)而減少系統(tǒng)開(kāi)銷(xiāo)和資源的浪費(fèi)
index.php
Extend/SingleObject.php
3、注冊(cè)樹(shù)模式
將我們用到的對(duì)象注冊(cè)到注冊(cè)樹(shù)上,然后在之后要用到這個(gè)對(duì)象的時(shí)候,直接從注冊(cè)樹(shù)上取下來(lái)就好。(就和我們用全局變量一樣方便)
Extend/RegisterTree,php
五、其他常見(jiàn)的8種PHP設(shè)計(jì)模式
1、適配器模式
將一個(gè)類(lèi)的接口轉(zhuǎn)換成客戶(hù)希望的另一個(gè)接口,適配器模式使得原本的由于接口不兼容而不能一起工作的那些類(lèi)可以一起工作。
應(yīng)用場(chǎng)景:老代碼接口不適應(yīng)新的接口需求,或者代碼很多很亂不便于繼續(xù)修改,或者使用第三方類(lèi)庫(kù)。常見(jiàn)的有兩種適配器,分別是類(lèi)適配器和對(duì)象適配器,這里拿更看好的對(duì)象適配器舉例:
"; } } /** * 類(lèi)適配器角色(新定義接口的具體實(shí)現(xiàn)) * Class Adapter * @package Extend */ class Adapter implements Target { private $adaptee; function __construct() { //適配器初始化直接new 原功能類(lèi),以方便之后委派 $adaptee = new Adaptee(); $this->adaptee = $adaptee; } //委派調(diào)用Adaptee的sampleMethod1方法 public function simpleMethod1() { echo $this->adaptee->simpleMethod1(); } public function simpleMethod2() { echo 'Adapter simpleMethod2'."
"; } } /** * 客戶(hù)端調(diào)用 */ $adapter = new Adapter(); $adapter->simpleMethod1(); $adapter->simpleMethod2();2、策略模式
將一組特定的行為和算法封裝成類(lèi),以適應(yīng)某些特定的上下文環(huán)境,這種模式就是策略模式,策略模式可以實(shí)現(xiàn)依賴(lài)倒置以及控制反轉(zhuǎn)。
實(shí)例舉例:假如一個(gè)電商網(wǎng)站系統(tǒng),針對(duì)男性女性用戶(hù)要各自跳轉(zhuǎn)到不同的商品類(lèi)目,并且所有的廣告位展示展示不同的廣告。
index.php
userType->showAd(); echo "Category:"; $this->userType->showCategory(); } /** * 策略模式 * 根據(jù)傳遞的用戶(hù)性別展示不同類(lèi)別數(shù)據(jù) * @param \Extend\UserType $userType */ function setUserType(\Extend\UserType $userType) { $this->userType = $userType; } } $obj = new Home(); if ($_GET['userType'] == 'female'){ $userType = new \Extend\FemaleUserType(); } else { $userType = new \Extend\MaleUserType(); } $obj->setUserType($userType); $obj->index();Extend/userType.php(定義的接口)
MaleUserType.php、FemaleUserType.php(具體實(shí)現(xiàn)的類(lèi) )
顯示效果:
3、數(shù)據(jù)對(duì)象映射模式
將對(duì)象和數(shù)據(jù)存儲(chǔ)映射起來(lái),對(duì)一個(gè)對(duì)象的操作會(huì)映射為對(duì)數(shù)據(jù)存儲(chǔ)的操作。
下面在代碼中實(shí)現(xiàn)數(shù)據(jù)對(duì)象映射模式,我們將實(shí)現(xiàn)一個(gè)ORM類(lèi),將復(fù)雜的sql語(yǔ)句映射成對(duì)象屬性的操作。并結(jié)合使用數(shù)據(jù)對(duì)象映射模式、工廠模式、注冊(cè)模式。
-----(1)數(shù)據(jù)庫(kù)映射模式簡(jiǎn)單實(shí)例實(shí)現(xiàn)
index.php
name = '小卜丟飯團(tuán)子'; $user->salary = '20000'; $user->city = '浙江省';Extend/User.php
id = $id; $this->pdo = new \PDO('MySQL:host=127.0.0.1;dbname=test','root','123456'); } function __destruct() { $this->pdo->query("update user set name = '{$this->name}',salary = '{$this->salary}',city = '{$this->city}' where id='{$this->id}'"); } }這樣,執(zhí)行index.php文件,數(shù)據(jù)庫(kù)就會(huì)發(fā)生相應(yīng)的操作,也就實(shí)現(xiàn)了基本的數(shù)據(jù)對(duì)象映射。
-------(2)數(shù)據(jù)庫(kù)映射模式復(fù)雜案例實(shí)現(xiàn)
index.php
name = '小卜丟飯團(tuán)子'; $user->salary = '20000'; $user->city = '浙江省'; } function test() { $user = Extend\Factory::getUserObj(25); $user->city = '廣東省'; } } $ex = new EX(); $ex->index();Extend/Factory.php
Extend/Register.php
Extend/User.php
id = $id; $this->pdo = new \PDO('mysql:host=127.0.0.1;dbname=test','root','123456'); } function __destruct() { $this->pdo->query("update user set name = '{$this->name}',salary = '{$this->salary}',city = '{$this->city}' where id='{$this->id}'"); } }這樣,就實(shí)現(xiàn)了稍復(fù)雜的數(shù)據(jù)對(duì)象映射模式和工廠模式、注冊(cè)樹(shù)模式相結(jié)合的案例。
4、觀察者模式
當(dāng)一個(gè)對(duì)象狀態(tài)發(fā)生改變時(shí),依賴(lài)它的對(duì)象會(huì)全部收到通知,并自動(dòng)更新。
場(chǎng)景:一個(gè)事件發(fā)生后,要執(zhí)行一連串更新操作。傳統(tǒng)的編程方式就是在事件的代碼之后直接加入處理邏輯,當(dāng)更新的邏輯增多之后,代碼會(huì)變的難以維護(hù)。這種方式是耦合的,侵入式的,增加新的邏輯需要修改事件主體的代碼。觀察者模式實(shí)現(xiàn)了低耦合,非侵入式的通知與更新機(jī)制。
4.1、傳統(tǒng)模式舉例:
"; //傳統(tǒng)方式是在發(fā)生一個(gè)事件之后直接進(jìn)行一系列的相關(guān)處理,耦合度比較高,比如寫(xiě)入日志,給用戶(hù)發(fā)郵件等等 echo "在用戶(hù)下單之后進(jìn)行的一系列操作
"; } } $event = new Event(); $event->firmOrder();4.2、觀察者模式典型實(shí)現(xiàn)方式:
(1)定義2個(gè)接口:觀察者(通知)接口、被觀察者(主題)接口
(2)定義2個(gè)類(lèi),觀察者類(lèi)實(shí)現(xiàn)觀察者接口、被觀察者類(lèi)實(shí)現(xiàn)被觀察者接口
(3)被觀察者注冊(cè)自己需要通知的觀察者
(4)被觀察者類(lèi)某個(gè)業(yè)務(wù)邏輯發(fā)生時(shí),通知觀察者對(duì)象,進(jìn)而每個(gè)觀察者執(zhí)行自己的業(yè)務(wù)邏輯。
代碼示例:
test.php
observers[] = $observer; } /** * 購(gòu)票主體方法 * BuyTicket constructor. * @param $ticket 購(gòu)票排號(hào) */ public function buyTicket($ticket) { //1、根據(jù)需求寫(xiě)購(gòu)票邏輯 //.............. //2、購(gòu)票成功之后,循環(huán)通知觀察者,并調(diào)用其buyTicketOver實(shí)現(xiàn)不同業(yè)務(wù)邏輯 foreach ($this->observers as $observe) { $observe->buyTicketOver($this, $ticket); //$this 可用來(lái)獲取主題類(lèi)句柄,在通知中使用 } } } /** * 購(gòu)票成功后,發(fā)送短信通知 * Class buyTicketMSN */ class buyTicketMSN implements TicketObserver { public function buyTicketOver($sender, $ticket) { echo (date ( 'Y-m-d H:i:s' ) . " 短信日志記錄:購(gòu)票成功:$ticket
"); } } /** * 購(gòu)票成功后,記錄日志 * Class buyTicketLog */ class buyTicketLog implements TicketObserver { public function buyTicketOver($sender, $ticket) { echo (date ( 'Y-m-d H:i:s' ) . " 文本日志記錄:購(gòu)票成功:$ticket
"); } } /** * 購(gòu)票成功后,贈(zèng)送優(yōu)惠券 * Class buyTicketCoupon */ class buyTicketCoupon implements TicketObserver { public function buyTicketOver($sender, $ticket) { echo (date ( 'Y-m-d H:i:s' ) . " 贈(zèng)送優(yōu)惠券:購(gòu)票成功:$ticket 贈(zèng)送10元優(yōu)惠券1張。
"); } } //實(shí)例化購(gòu)票類(lèi) $buy = new BuyTicket(); //添加多個(gè)觀察者 $buy->addObserver(new buyTicketMSN()); $buy->addObserver(new buyTicketLog()); $buy->addObserver(new buyTicketCoupon()); //開(kāi)始購(gòu)票 $buy->buyTicket ("7排8號(hào)");瀏覽器顯示結(jié)果:
5、原型模式
原型模式與工廠模式的作用類(lèi)似,都是用來(lái)創(chuàng)建對(duì)象的。但是實(shí)現(xiàn)方式是不同的。原型模式是先創(chuàng)建好一個(gè)原型對(duì)象,然后通過(guò)clone原型對(duì)象來(lái)創(chuàng)建新的對(duì)象。這樣,就免去了類(lèi)創(chuàng)建時(shí)重復(fù)的初始化操作。
原型模式適用于大對(duì)象的創(chuàng)建,創(chuàng)建一個(gè)大對(duì)象需要很大的開(kāi)銷(xiāo),如果每次new就會(huì)消耗很大,原型模式僅需內(nèi)存拷貝即可。
代碼實(shí)例:
_name = $name; } public function setName($name) { $this->_name = $name; } public function getName() { return $this->_name; } public function copy() { //深拷貝實(shí)現(xiàn) //$serialize_obj = serialize($this); // 序列化 //$clone_obj = unserialize($serialize_obj); // 反序列化 //return $clone_obj; // 淺拷貝實(shí)現(xiàn) return clone $this; } } /** * 測(cè)試深拷貝用的引用類(lèi) */ class Demo { public $array; } //測(cè)試 $demo = new Demo(); $demo->array = array(1, 2); $object1 = new ConcretePrototype($demo); $object2 = $object1->copy(); var_dump($object1->getName()); echo '
'; var_dump($object2->getName()); echo '
'; $demo->array = array(3, 4); var_dump($object1->getName()); echo '
'; var_dump($object2->getName()); echo '
';瀏覽器顯示結(jié)果:
6、裝飾器模式
可以動(dòng)態(tài)的添加或修改類(lèi)的功能
一個(gè)類(lèi)實(shí)現(xiàn)一個(gè)功能,如果要再修改或添加額外的功能,傳統(tǒng)的編程模式需要寫(xiě)一個(gè)子類(lèi)繼承它,并重新實(shí)現(xiàn)類(lèi)的方法。
使用裝飾器模式,僅需在運(yùn)行時(shí)添加一個(gè)裝飾器對(duì)象即可實(shí)現(xiàn),可以實(shí)現(xiàn)最大的靈活性。
color = $color; } public function beforeEcho() { echo "color}'>"; } public function afterEcho() { echo ""; } } /** * 字體大小裝飾器實(shí)現(xiàn) * Class SizeDecorator */ class SizeDecorator implements Decorator { protected $size; public function __construct($size) { $this->size = $size; } public function beforeEcho() { echo " size}px'>"; } public function afterEcho() { echo ""; } } /** * 被裝飾者 * 輸出一個(gè)字符串 * 裝飾器動(dòng)態(tài)添加功能 * Class EchoText */ class EchoText { protected $decorators = array();//存放裝飾器 //裝飾方法 public function Index() { //調(diào)用裝飾器前置操作 $this->beforeEcho(); echo "你好,我是裝飾器。"; //調(diào)用裝飾器后置操作 $this->afterEcho(); } //添加裝飾器 public function addDecorator(Decorator $decorator) { $this->decorators[] = $decorator; } //執(zhí)行裝飾器前置操作 先進(jìn)先出原則 protected function beforeEcho() { foreach ($this->decorators as $decorator) $decorator->beforeEcho(); } //執(zhí)行裝飾器后置操作 先進(jìn)后出原則 protected function afterEcho() { $tmp = array_reverse($this->decorators); foreach ($tmp as $decorator) $decorator->afterEcho(); } } //實(shí)例化輸出類(lèi) $echo = new EchoText(); //增加裝飾器 $echo->addDecorator(new ColorDecorator('yellow')); //增加裝飾器 $echo->addDecorator(new SizeDecorator('22')); //輸出 $echo->Index(); 7、迭代器模式
在不需要了解內(nèi)部實(shí)現(xiàn)的前提下,遍歷一個(gè)聚合對(duì)象的內(nèi)部元素而又不暴露該對(duì)象的內(nèi)部表示,這就是PHP迭代器模式的定義。
相對(duì)于傳統(tǒng)編程模式,迭代器模式可以隱藏遍歷元素的所需的操作。
index.php
Extend/AllUser.php
pdo = new \PDO('mysql:host=127.0.0.1;dbname=test','root','123456'); //獲取所有用戶(hù)的id $this->ids = $this->pdo->query("select id from user")->fetchAll(2); } /** * 實(shí)現(xiàn)接口方法,重置迭代器,回到集合開(kāi)頭 */ public function rewind() { $this->index = 0; } /** * 實(shí)現(xiàn)接口方法,獲取當(dāng)前元素 * @return mixed|void */ public function current() { $id = $this->ids[$this->index]['id']; //獲取當(dāng)前用戶(hù)的數(shù)據(jù) $user_data = $this->pdo->query("select * from user where id='{$id}'")->fetch(2); return $user_data; } /** * 實(shí)現(xiàn)接口方法,獲取當(dāng)前元素鍵值 * @return mixed|void */ public function key() { return $this->index; } /** * 實(shí)現(xiàn)接口方法,獲取下一個(gè)元素 */ public function next() { $this->index++; } /** * 實(shí)現(xiàn)接口方法,驗(yàn)證是否還有下一個(gè)元素 * @return bool|void */ public function valid() { return $this->index < count($this->ids); } }8、代理模式
在客戶(hù)端與實(shí)體之間建立一個(gè)代理對(duì)象(proxy),客戶(hù)端對(duì)實(shí)體進(jìn)行操作全部委派給代理對(duì)象,隱藏實(shí)體的具體實(shí)現(xiàn)細(xì)節(jié)。
典型的應(yīng)用就是mysql的主從結(jié)構(gòu),讀寫(xiě)分離。在mysql中,對(duì)所有讀的操作請(qǐng)求從庫(kù),所有寫(xiě)的操作請(qǐng)求主庫(kù)。
聲明一個(gè)代理類(lèi),前臺(tái)使用時(shí)只需創(chuàng)建一個(gè)代理類(lèi),調(diào)用對(duì)應(yīng)方法即可。代碼實(shí)例:
index.php
query("select * from user where id = 1 limit 1"); #增刪改操作使用主庫(kù) //$db_master = Extend\Factory::getDatabase('master'); //$db_master->query("update user name = 'xiaobudiu' where id = 29 limit 1"); // 2、使用代理模式 $db_proxy = new Extend\Proxy(); $db_proxy->getUserName(1); $db_proxy->setUserName(29,'xiaobudiu');Extend/Proxy.php
query("select name from user where id =$id limit 1"); } function setUserName($id, $name) { $db = Factory::getDatabase('master'); $db->query("update user set name = $name where id =$id limit 1"); } }Extend/Factory.php
config['database']['slave']; $db_conf = $slaves[array_rand($slaves)]; } else { $db_conf = Application::getInstance()->config['database'][$id]; } //注冊(cè)樹(shù)模式存儲(chǔ)及獲取對(duì)象 $db = Register::get($key); if (!$db) { $db = new Database\MySQLi(); $db->connect($db_conf['host'], $db_conf['user'], $db_conf['password'], $db_conf['dbname']); Register::set($key, $db); } return $db; } }Extend/Application.php
base_dir = $base_dir; $this->config = new Config($base_dir.'/configs'); } static function getInstance($base_dir = '') { if (empty(self::$instance)) { self::$instance = new self($base_dir); } return self::$instance; } }Extend/Config.php
path = $path; } function offsetGet($key) { if (empty($this->configs[$key])) { $file_path = $this->path.'/'.$key.'.php'; $config = require $file_path; $this->configs[$key] = $config; } return $this->configs[$key]; } function offsetSet($key, $value) { throw new \Exception("cannot write config file."); } function offsetExists($key) { return isset($this->configs[$key]); } function offsetUnset($key) { unset($this->configs[$key]); } }configs/database.php
array( 'type' => 'MySQL', 'host' => '127.0.0.1', 'user' => 'root', 'password' => '123456', 'dbname' => 'test', ), 'slave' => array( 'slave1' => array( 'type' => 'MySQL', 'host' => '127.0.0.1', 'user' => 'root', 'password' => '123456', 'dbname' => 'test', ), 'slave2' => array( 'type' => 'MySQL', 'host' => '127.0.0.1', 'user' => 'root', 'password' => '123456', 'dbname' => 'test', ), ), ); return $config;五、面向?qū)ο缶幊痰幕驹瓌t
1、單一職責(zé)原則:一個(gè)類(lèi)只需要做好一件事情。不要使用一個(gè)類(lèi)完成很多功能,而應(yīng)該拆分成更多更小的類(lèi)。
2、開(kāi)放封閉原則:一個(gè)類(lèi)寫(xiě)好之后,應(yīng)該是可擴(kuò)展而不可修改的。
3、依賴(lài)倒置原則:一個(gè)類(lèi)不應(yīng)該強(qiáng)依賴(lài)另外一個(gè)類(lèi),每個(gè)類(lèi)對(duì)于另外一個(gè)類(lèi)都是可替換的。
4、配置化原則:盡量使用配置,而不是硬編碼。
5、面向接口編程原則:只需要關(guān)心某個(gè)類(lèi)提供了哪些接口,而不需要關(guān)心他的實(shí)現(xiàn)。
六、自動(dòng)加載配置類(lèi)文件
1、php中使用ArrayAccess實(shí)現(xiàn)配置文件的加載(使得程序可以以數(shù)組的方式進(jìn)行讀取配置)
(1)定義Config.php,繼承php自帶的ArrayAccess接口,并實(shí)現(xiàn)相應(yīng)的方法,用于讀取和設(shè)置配置
Extend/Config.php
path = $path; } function offsetGet($key) { if (empty($this->configs[$key])) { $file_path = $this->path.'/'.$key.'.php'; $config = require $file_path; $this->configs[$key] = $config; } return $this->configs[$key]; } function offsetSet($key, $value) { throw new \Exception("cannot write config file."); } function offsetExists($key) { return isset($this->configs[$key]); } function offsetUnset($key) { unset($this->configs[$key]); } }(2)configs/database.php
array( 'type' => 'MySQL', 'host' => '127.0.0.1', 'user' => 'root', 'password' => '123456', 'dbname' => 'test', ), 'slave' => array( 'slave1' => array( 'type' => 'MySQL', 'host' => '127.0.0.1', 'user' => 'root', 'password' => '123456', 'dbname' => 'test', ), 'slave2' => array( 'type' => 'MySQL', 'host' => '127.0.0.1', 'user' => 'root', 'password' => '123456', 'dbname' => 'test', ), ), ); return $config;(3)讀取配置
index.php
(4)瀏覽器顯示:
到此,就可以在程序中隨心所欲的加載配置文件了。
2、在工廠方法中讀取配置,生成可配置化的對(duì)象
Extend/Factory.php
config['database']['slave']; $db_conf = $slaves[array_rand($slaves)]; } else { $db_conf = Application::getInstance()->config['database'][$id]; } //注冊(cè)樹(shù)模式存儲(chǔ)及獲取對(duì)象 $db = Register::get($key); if (!$db) { $db = new Database\MySQLi(); $db->connect($db_conf['host'], $db_conf['user'], $db_conf['password'], $db_conf['dbname']); Register::set($key, $db); } return $db; } }Extend/Application.php
base_dir = $base_dir; $this->config = new Config($base_dir.'/configs'); } static function getInstance($base_dir = '') { if (empty(self::$instance)) { self::$instance = new self($base_dir); } return self::$instance; } }Extend/Config.php
path = $path; } function offsetGet($key) { if (empty($this->configs[$key])) { $file_path = $this->path.'/'.$key.'.php'; $config = require $file_path; $this->configs[$key] = $config; } return $this->configs[$key]; } function offsetSet($key, $value) { throw new \Exception("cannot write config file."); } function offsetExists($key) { return isset($this->configs[$key]); } function offsetUnset($key) { unset($this->configs[$key]); } }上述內(nèi)容就是PHP的基礎(chǔ)知識(shí)點(diǎn)和基本用法,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
當(dāng)前文章:PHP的基礎(chǔ)知識(shí)點(diǎn)和基本用法
分享網(wǎng)址:http://weahome.cn/article/ijgppo.html