1 編程選擇等寬字體
黃石ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!
2 source code pro 字體
3 運行環(huán)境搭建,推薦 easyphp
4 關于命名空間:
面向?qū)ο蟮母呒壧匦?/p>
介紹、使用:
namespace test1;
下面的所有代碼都屬于這個命名空間里面的。
調(diào)用:test1\funciton_name(); 即可。
5 類自動載入特性
function __autoload($class); // 以前是這么干的。
{
require __DIR__.'/'.$class.'.php';
}
// 后來被廢紙了, 5.3以后用 spl_autoload_register('autoload1');
這樣就不沖突了,防止不同框架之間的沖突。自己隨便定義自動載入函數(shù)。
6 基礎框架:
psr-0規(guī)范
1 命名空間必須與絕對路徑一致
2 類名首字母大寫
3 除了入口文件外的其它.php文件只有一個類,不能有可執(zhí)行代碼
開發(fā)符合psr-0規(guī)范的基礎框架
1 全部使用命名空間
2 所有php文件必須自動載入,不能有include/require
3 單一入口
文件:
index.php
App 文件夾
imooc 文件夾
類名 文件名 命名空間 必須一致
注冊 自動載入 類;include 包含進來。
7 數(shù)據(jù)結(jié)構
spl 數(shù)據(jù)結(jié)構 4種常用的數(shù)據(jù)結(jié)構
棧
$stack = new splstack(); 棧定義
$stack->push('data1');// 入棧
echo $stack->pop();//出棧
隊列
$queue = new splQueue();
$queue->enqueue('data1');
$queue->enqueue('data2');
echo $queue->dequeue();
堆
$heap = new splMinHeap();//最小堆
$heap->insert('data1');//插入
echo $heap->extract();//提取
固定尺寸數(shù)組
$array = new splFixedArray(10);
$array[0] = 123;
$array[1] = 234;
var_dump($array);
8 鏈式操作
$db->where()->limit()->order();
class Database{
function where(){}
function order(){}
function limit(){}
}
傳統(tǒng):
$db->where();
$db->limit();
$db->order();
鏈式操作的核心就是:每個方法后,return $this;
class Database{
function where(){return $this;}
function order(){return $this;}
function limit(){return $this;}
}
9 魔術方法的使用
1 __get/__set 對象屬性接管
2 __call/__callStatic 方法/靜態(tài)方法 調(diào)用
3 __toString// 轉(zhuǎn)換字符串
4 __invoke// 當成函數(shù)執(zhí)行
對于對象不存在的屬性的時候自動執(zhí)行
class Object{
function __set($key,$value){
$this->array[$key] = $value;
}
function __get($key){
return $this->array($key);
}
}
對于對象不存在的方法的時候自動執(zhí)行
class Object{
function __call($func,$param){
return 'magic function \n';
}
// 類的靜態(tài)方法
static function __callStatic($func,$param){
return 'magic static function \n';
}
// echo $obj; 把類當作字符串用
function __toString(){
return __CLASS__;
}
//echo $obj($param); 把類當函數(shù)用
function __invoke($param){
return 'invoke';
}
}
10 基礎設計模式
3種基本設計模式
工廠模式、單立模式、注冊模式
工廠方法或類生成對象,而不是在代碼中直接new
單例模式:使某個類的對象僅允許創(chuàng)建一個
注冊模式:全局共享和交換對象。
工廠模式:工廠方法替換new 操作
class Factory{
static function createDatebase(){
$db = new Database();
return $db;
}
}
$db = IMooc\Factory::createDatabase();
方便統(tǒng)一修改變化;
單列模式: 防止資源浪費,一次創(chuàng)建
class Database
{
private $db;
private function __construct() //創(chuàng)建私有
{
}
static function getInstance()
{
if(self::$db){
return self::$db;
}else{
self::$db = new self();
return self::$db;
}
}
}
注冊模式:
class Register{
protected static $objects;
function set($alias,$object){
self::$objects[$alias] = $object;
}
function get($name){
return self::$objects[$name];
}
function _unset($alias){
unset(self::$objects[$alias]);
}
}
用法:$db = Register::get('db1');
適配器模式:
1 適配器模式,可以將截然不同的函數(shù)接口封裝成統(tǒng)一的API
2 實際應用舉例,php的數(shù)據(jù)庫操作有MySQL,mysqli,pdo3種模式,可以統(tǒng)一成益智的接口
class mysql {}
class mysqli {}
class pdo{}
namespace IMooc;
interface IDatabase
{
function connet($host,$user,$passwd,$dbname);
function query($sql);
function close();
}
class Datebase{
}
mysql.php
namespace IMooc;
use IMooc\IDatabase;
class MySQL [implements] IDatabase{ [implements] 貌似需要替換
protected $conn;
function connect($host,$user,$passwd,$dbname){
$conn = mysql_connect($host,$user,$passwd);
mysql_select_db($dbname);
$this->conn = $conn;
}
function query($sql){
$res = mysql_query($sql);
return $res;
}
function close(){
}
}
// 使用
$db = new IMooc\Databes\MySQL();
$db->connect('127.0.0.1','root','passwd','dbname');
$db->query($sql);
1首先約定接口,
2實現(xiàn)接口的所有方法
策略模式
1 將一組特定的行為和算法封裝成類,以適應某些特定的上下文環(huán)境,這種模式就是策略模式
2 實際應用舉例,假如一個電商網(wǎng)站系統(tǒng),針對男性女性顯示不同。
增加策略即可:
實現(xiàn)和使用
接口文件
UserStrategey.php
namespace IMooc;
interface UserStrategy{
function showAd();
function showCategory();
}
策略實現(xiàn)文件
femalUserStrategy.php
namespace IMooc;
class FemalUserStrategy implemets UserStragey{
function showAd(){
echo '男性廣告';
}
function showCategory(){
echo '男人';
}
}
// 女性同上
// 使用文件 index.php
class Page{
protected $strategy;
function index(){
if(isset($_GET['female'])){
// 男性邏輯
}
// 傳統(tǒng)如上
// 策略模式如下
echo "AD:";
$this->strategy->showAd();
}
function setStragegy(\IMooc\UserStrategy $strategy){
$this->strategy = $strategy;
}
}
$page = new Page;
if(isset($_GET['female'])){
$strategy = new \IMooc\FemalUserStrategy();
}else{
$strategy = new \IMooc\MaleUserStrategy();
}
$page->setStrategy($strategy);
$page->index();
策略模式的控制反轉(zhuǎn)、依賴導致
面向?qū)ο蟮慕怦?。很重要?/p>
數(shù)據(jù)對象映射模式
1 數(shù)據(jù)對象映射模式,是將對象和數(shù)據(jù)存儲映射起來,對一個對象的操作會映射為對數(shù)據(jù)的操作