
上面的代码用静态变量 实现了单例模式和创建单例的静态方法 getInstance(). 请注意以下几点:
构造函数 __construct() 被声明为 protected 是为了防止用 new 操作符在这个类之外创建新的实例。 魔术方法 __clone() 被声明为 private 是为了防止用 clone 操作符克隆出新的实例. 魔术方法 __wakeup() 被声明为 private 是为了防止通过全局函数 unserialize() 反序列化这个类的实例。 新的实例是用过静态方法 getInstance() 使用后期静态绑定生成的。这允许我们对 Singleton 类进行继承,并且在取得 SingletonChild 的单例时不会出现问题。undefined单例模式是非常有用的,特别是我们需要确保在整个请求的声明周期内只有一个实例存在。典型的应用场景是,当我们有一个全局的对象(比如配置类)或一个共享的资源(比如事件队列)时。
你应该非常小心地使用单例模式,因为它非常自然地引入了全局状态到你的应用中,降低了可测试性。 在大多数情况下,依赖注入可以(并且应该)代替单例类。 使用依赖注入意味着我们不会在设计应用时引入不必要的耦合,因为对象使用共享的或全局的资源,不再需要耦合具体的类。
<?php
/**
 *  我们如何来写一个属于自己的单例类呢?
 *  写一个单例类是否有什么规则可寻?
 *  1.有一个静态成员变量来保存类的唯一实例
 *  2.构造函数和克隆函数必须申明为私有的(防止外部程序能通过 new 关键字进行创建对象)
 *  3.公共的静态方法可以访问类的实例作为一个引用返回
 *  4.只能实例化一次
 */
class Obj
{
    protected static $_Ins;
    public $str = null;
    private function __construct()
    {
        $this->str = mt_rand(100,999);
    }
    private function __clone(){
    }
    public static function getInstance(){
        if (!(self::$_Ins instanceof self)){
            self::$_Ins = new self();
        }
        return self::$_Ins;
    }
}
$a = Obj::getInstance();
$b = Obj::getInstance();
var_dump($a);
echo '<br/><hr/>';
var_dump($b);
echo '<br/><hr/>';
var_dump($a === $b); // true
或者采用 ci 框架比较古老的单例方法
<?php
class ClassName
{
	
	private static $instance;
	function __construct()
	{
		// 运用了 $this 因此下面调用的时候必须先实例化
		self::$instance =& $this;
	}
	public static function &get_instance()
	{
		return self::$instance;
	}
}
$aa = new ClassName;
$bb = ClassName::get_instance();
$cc = ClassName::get_instance();
echo '<pre>';
var_dump($aa);
echo '<pre>';
var_dump($bb);
echo '<pre>';
var_dump($cc);/**
 *
 * 需求:假如一个电商网站系统,针对男性女性用户要各自跳转到不同的商品类目,并且所有广告位展示不同的广告
 */
 
 // UserStrategy.php 
 <?php
namespace IMooc;
interface UserStrategy {
    function showAd();
    function showCategory();
}
// FemaleUserStrategy.php
<?php
namespace IMooc;
class FemaleUserStrategy implements UserStrategy {
    function showAd () {
        echo '2014新款女装';
    }
    function showCategory () {
        echo '女装';
    }
}
// MaleUserStrategy.php
<?php
namespace IMooc;
class MaleUserStrategy implements UserStrategy {
    function showAd () {
        echo '2014男装秀';
    }
    function showCategory () {
        echo '男装';
    }
}
// 调用
class Page {
    protected $strategy;
    function index () {
        echo 'AD:';
        $this->strategy->showAd();
        echo '<br/>';
        echo 'Category:';
        $this->strategy->showCategory();
    }
    function setStrategy (\IMooc\UserStrategy $strategy) {
        $this->strategy = $strategy;
    }
}
$page = new Page;
if (isset($_GET['female'])) {
    $strategy = new \IMooc\FemaleUserStrategy();
} else {
    $strategy = new \IMooc\MaleUserStrategy();
}
$page->setStrategy($strategy);
$page->index();
 应用场景:一个事件发生后,要执行一连串更新操作。传统的编程方式,就是在事件的代码之后直接加入处理逻辑。当更新的逻辑增多之后,代码会变得难以维护。这种方式是耦合的,侵入式的,增加新的逻辑需要修改事件主体的代码。
// EventGenerator.php 中
<?php
namespace IMooc;
abstract class EventGenerator {
    private $observers = array();
    // 添加观察者
    function addObserver (Observer $observer) {
        $this->observers[] = $observer;
    }
    // 调用每一个观察者的 update 方法
    function notify () {
        foreach ($this->observers as $observer) {
            $observer->update();
        }
    }
}Observer.php 中
<?php
namespace IMooc;
interface Observer {
    function update ($envent_info = null);
}调用观察者
class Event extends \IMooc\EventGenerator {
    function trigger () {
        $this->notify();
    }
}
// 观察者1
class Observer1 implements \IMooc\Observer {
    function update ($event_info = null) {
        echo "逻辑1<br /> \n";
    }
}
// 观察者2
class Observer2 implements \IMooc\Observer {
    function update ($event_info = null) {
        echo "逻辑2<br /> \n";
    }
}
$event = new Event;
$event->addObserver(new Observer1);
$event->addObserver(new Observer2);
$event->trigger();外部调用时
<?php
var_dump(IMooc\Factory::createDatabase());// Register.php
<?php
namespace IMooc;
class Register {
    protected static $objects;
    /**
     * 注册实例
     * @param [type] $alias  实例别名
     * @param [type] $object 实例对象
     */
    static function set ($alias, $object) {
        self::$objects[$alias] = $object;
    }
    // 获取对象实例
    static function get ($name) {
        return self::$objects[$name];
    }
    // 删除对象实例
    static function _unset ($alias) {
        unset(self::$objects[$alias]);
    }
}可以放在工厂文件中之后再在其他地方调用
// Factory.php 中设置
Register::set('db', Database::getInstance());
// 其它文件中调用
$db = \IMooc\Register::get('db');<?php
namespace IMooc;
class User {
    public $id;
    public $name;
    public $phone;
    public $regtime;
    protected $db;
    function __construct ($id) {
        $this->db = new \IMooc\Database\MySQLi();
        $this->db->connect('127.0.0.1', 'root', '123456', 'test');
        $res = $this->db->query('select * from user limit 1');
        $data = $res->fetch_assoc();
        $this->id = $id;
        $this->name = $data['name'];
        $this->phone = $data['phone'];
        $this->regtime = $data['regtime'];
    }
    // 运用析构函数的特性实现更新操作
    function __destruct () {
        $this->db->query("update user set name = '{$this->name}',
            phone = '{$this->phone}',regtime = '$this->regtime'
              where id = '{$this->id}' limit 1 ");
    }
}调用
$user = new \IMooc\User(1);
$user->phone = 18502728040;
$user->name = '张三';
$user->regtime = time();传统写法
// 实例化画布对象
$canvas1 = new IMooc\Canvas();
// 初始化画布操作
$canvas1->init();
// 对画布1进行绘制
$canvas1->rect(3,6,4,12);
$canvas1->draw();
// 实例化画布对象
$canvas2 = new IMooc\Canvas();
// 初始化画布操作
$canvas2->init();
// 对画布2进行绘制
$canvas1->rect(1,6,4,18);
$canvas2->draw();使用原型模式
// 实例化画布对象
$prototype = new IMooc\Canvas();
// 初始化画布操作
$prototype->init();
$canvas1 = clone $prototype;
// 对画布1进行绘制
$canvas1->rect(3,6,4,12);
$canvas1->draw();
$canvas2 = clone $prototype;
// 对画布2进行绘制
$canvas2->rect(3,6,4,12);
$canvas2->draw();IMooc\Canvas.php
<?php
namespace IMooc;
class Canvas
{
    public $data;
    /**
     * 保存装饰器
     *
     * @var array
     */
    protected $decorators = array();
    /**
     * 初始化画布
     *
     * @param int $width
     * @param int $height
     */
    function init($width = 20, $height = 10)
    {
        $data = array();
        for($i = 0; $i < $height; $i++)
        {
            for($j = 0; $j < $width; $j++)
            {
                $data[$i][$j] = '*';
            }
        }
        $this->data = $data;
    }
    /**
     * 添加装饰器
     *
     * @param DrawDecorator $decorator
     */
    function addDecorator(DrawDecorator $decorator)
    {
        $this->decorators[] = $decorator;
    }
    /**
     * 画画前的调用方法
     */
    function beforeDraw()
    {
        foreach($this->decorators as $decorator)
        {
            $decorator->beforeDraw();
        }
    }
    /**
     * 画画后的调用方法
     */
    function afterDraw()
    {
        // 需要进行反转,beforeDraw 方法是先进,afterDraw 方法是先出  (先进先出,后进后出)
        $decorators = array_reverse($this->decorators);
        foreach($decorators as $decorator)
        {
            $decorator->afterDraw();
        }
    }
    /**
     * 画画
     */
    function draw()
    {
        $this->beforeDraw();
        foreach($this->data as $line)
        {
            foreach($line as $char)
            {
                echo $char;
            }
            echo "<br />\n";
        }
        $this->afterDraw();
    }
    function rect($a1, $a2, $b1, $b2)
    {
        foreach($this->data as $k1 => $line)
        {
            if ($k1 < $a1 or $k1 > $a2) continue;
            foreach($line as $k2 => $char)
            {
                if ($k2 < $b1 or $k2 > $b2) continue;
                $this->data[$k1][$k2] = ' ';
            }
        }
    }
}IMooc\DrawDecorator.php
<?php
namespace IMooc;
interface DrawDecorator
{
    function beforeDraw();
    function afterDraw();
}IMooc\ColorDrawDecorator.php
<?php
namespace IMooc;
class ColorDrawDecorator implements DrawDecorator
{
    protected $color;
    function __construct($color = 'red')
    {
        $this->color = $color;
    }
    function beforeDraw()
    {
        echo "<div style='color: {$this->color};'>";
    }
    function afterDraw()
    {
        echo "</div>";
    }
}IMooc\SizeDrawDecorator.php
<?php
namespace IMooc;
class SizeDrawDecorator implements DrawDecorator
{
    protected $size;
    function __construct($size = '14px')
    {
        $this->size = $size;
    }
    function beforeDraw()
    {
        echo "<div style='font-size: {$this->size};'>";
    }
    function afterDraw()
    {
        echo "</div>";
    }
}调用
$canvas = new \IMooc\Canvas();
$canvas->init();
$canvas->addDecorator(new \IMooc\ColorDrawDecorator('green'));
// $canvas->addDecorator(new \IMooc\SizeDrawDecorator('10px'));
$canvas->rect(3, 6, 4, 12);
$canvas->draw();IMooc\AllUser.php
<?php
namespace IMooc;
class AllUser implements \Iterator
{
    protected $ids;
    protected $data = array();
    protected $index;  // 迭代器的当前位置
    function __construct()
    {
        $db = Factory::getDatabase();
        $result = $db->query("select id from user");
        $this->ids = $result->fetch_all(MYSQLI_ASSOC);
    }
    // 当前元素
    function current()
    {
        $id = $this->ids[$this->index]['id'];
        // 获取指定 id 的用户信息
        return Factory::getUser($id);
    }
    // 下一个元素
    function next()
    {
        $this->index ++;
    }
    // 是否还有下一个元素
    function valid()
    {
        return $this->index < count($this->ids);
    }
    // 重置迭代器
    function rewind()
    {
        $this->index = 0;
    }
    // 获取当前的位置
    function key()
    {
        return $this->index;
    }
}调用
// 所有的用户信息
$users = new \IMooc\AllUser();
foreach ($users as $user) {
    var_dump($user);
}IMooc\Proxy.php
<?php
namespace IMooc;
class Proxy implements IUserProxy
{
    // 从数据库用于 读取 操作
    function getUserName($id)
    {
        $db = Factory::getDatabase('slave');
        $db->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");
    }
}IMooc\IUserProxy.php
<?php
namespace IMooc;
interface IUserProxy
{
    function getUserName($id);
    function setUserName($id, $name);
}调用
$proxy = new \IMooc\Proxy();
$proxy->getUserName($id);
$proxy->setUserName($id, $name);原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。