Home >Backend Development >PHP Tutorial >Analysis of php singleton mode implementation method, php example mode_PHP tutorial

Analysis of php singleton mode implementation method, php example mode_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 10:03:41864browse

Analysis of the implementation method of PHP singleton mode, PHP example mode

The examples in this article describe the implementation method of PHP singleton mode. Share it with everyone for your reference. The details are as follows:

<&#63;php
/**
 * @copyright 2013 maguowei.com
 * @author Ma Guowei <imaguowei@gmail.com>
 */
/**
 * 单例模式
 * Class Single
 */
class Single
{
  private $name;
  private static $single;
  private function __construct()
  {
  }
  public static function init()
  {
    if(empty(self::$single))
    {
      self::$single = new Single();
    }
    return self::$single;
  }
  public function getName()
  {
    return $this->name;
  }
  public function setName($name)
  {
    $this->name = $name;
  }
}
$s = Single::init();
$s->setName('hhhh');
echo '$s:'.$s->getName();
unset($s);
$m = Single::init();
echo '$m:'.$m->getName();

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/967743.htmlTechArticleAnalysis of the implementation method of php singleton mode, php example mode This article describes the implementation method of php singleton mode. Share it with everyone for your reference. The details are as follows: php/** * @copyright 2013 maguow...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn