duanji7182 2013-07-19 00:15
浏览 16
已采纳

PHP代码中的单例语法

I understand the singleton pattern, but I don't understand the following syntax:

    public static function get()
    {
      static $db = null;
      if ( $db == null )
        $db = new DatabaseConnection();
      return $db;
    }
    private function __construct()
    {
      $dsn = 'mysql://root:password@localhost/photos';
      $this->_handle =& DB::Connect( $dsn, array() );
    }

Why every time we call DatabaseConnection::get() we could ge the same singleton object? Because the code read from me will like:

    static $db = null; //set $db object to be null
    if($db==null)  // $db is null at the moment every time because we just set it to be null
      // call the private constructor every time we call get() *
      $db = new DatabaseConnection();  
    return $db;  // return the created 

Then how the get() function could always return a same object?

I am new to Php, most of the syntax to me will read like java, please any one could explain this to me?

Also is there any instructions/tutorial that I could read for understanding more syntax sugar like:

       $array_object[] = $added_item
  • 写回答

1条回答 默认 最新

  • duanjian3338 2013-07-19 01:34
    关注

    Try this inside your class:

    private static $db;
    
    public static function get(){
        if(!self::$db){
    
             self::$db = new DatabaseConnection();
    
         }
    
        return self::$db;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动