当前位置:首页 > PHP教程 > php高级应用 > 列表

php单例模式实现方法分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-16 13:06:27 浏览: 评论:0 

这篇文章主要介绍了php单例模式,实例分析了单例模式的原理与实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下。

本文实例讲述了php单例模式实现方法,分享给大家供大家参考,具体如下:

  1. <?php 
  2. /** 
  3.  * @copyright 2013 maguowei.com 
  4.  * @author Ma Guowei <imaguowei@gmail.com> 
  5.  */ 
  6. /** 
  7.  * 单例模式 
  8.  * Class Single 
  9.  */ 
  10. class Single 
  11.   private $name
  12.   private static $single
  13.   private function __construct() 
  14.   { 
  15.   } 
  16.   public static function init() 
  17.   { 
  18.     if(emptyempty(self::$single)) 
  19.     { 
  20.       self::$single = new Single(); 
  21.     } 
  22.     return self::$single
  23.   } 
  24.   public function getName() 
  25.   { 
  26.     return $this->name; 
  27.   } 
  28.   public function setName($name
  29.   { 
  30.     $this->name = $name
  31.   } 
  32. $s = Single::init(); 
  33. $s->setName('hhhh'); 
  34. echo '$s:'.$s->getName(); 
  35. unset($s); 
  36. $m = Single::init(); 
  37. echo '$m:'.$m->getName(); 

希望本文所述对大家的php程序设计有所帮助。

Tags: php单例模式

分享到: