PHP设计模式之单例模式

    <?php
    #后盾网 houdunwang.com
    #后盾人 houdunren.com
    namespace app;
    
    /**
     * Class Person
     *
     * @package app
     */
    class Person
    {
  /**
   * 保存对象实例
   * @var
   */
  protected static $isMake;
    
  /**
   * 不允许外部实例化
   * Person constructor.
   */
  private function __construct()
  {
    
  }
    
  /**
   * 使用静态变量控制只会创建一次对象实例
   *
   * @return mixed
   */
  public static function make()
  {
      if (is_null(static::$isMake)) {
          static::$isMake = new static();
      }
    
      return static::$isMake;
  }
    }
    
    $instance = Person::make();
    
    原文作者:设计模式
    原文地址: https://segmentfault.com/a/1190000009153045
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞