当前位置:首页 > PHP教程 > php面向对象 > 列表

PHP对象实例化单例方法

发布:smiling 来源: PHP粉丝网  添加日期:2018-09-27 11:10:14 浏览: 评论:0 

PHP实例化对象单例的方法:

三私一公:2个私有方法,1个私有属性,1个公共方法

代码如下 复制代码

  1. privatefunction__construct(){}//不可以继承构造方法 
  2. privatefunction__clone(){}//不可以继承克隆方法 
  3. privarestatic$_instance

一公代码如下:

  1. publicstaticfunctiongetinstance(){ 
  2.     if(!isset(static:$_instance)){ 
  3.       static::$_instance=newstatic(); 
  4.      } 
  5.       returnstatic::$_instance
  6.  } 

Tags: 实例 对象 方法

分享到: