PHP设计模式之单例模式

设计模式

随着项目的扩大,维护需要很大的成本,为了应对各种变动会出现设计模式。
设计模式的宗旨是重用;
目的是建立对象间的关联;
提供了让代码之间松耦合的各种方案

单例模式

需要声明静态方法和静态属性,不仅可以通过对象访问属性和方法,还可以通过类来访问他们,这就是静态属性和方法,必须使用static关键字。

class Pre{
     private $props = array();
     private static $instance;
     public static function getIn(){
         if(empty(static::$instance)){
            static::$instance = new Pre;
         }
         return static::$instance;
     }
     public function getProps($key, $value)
     {
         return $this->props[$key] = $value ;
     }
 }
$pre1 = Pre::getIn();
$pre2 = Pre::getIn();

你可能感兴趣的:(php)