php単一例モード実現方法の分析
本論文の例は、php単一の例によるモード実現方法を説明する。皆さんの参考にしてください。具体的には以下の通りです
<?php
/**
* @copyright 2013 maguowei.com
* @author Ma Guowei <[email protected]>
*/
/**
*
* 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();
本論文で述べたように、皆さんのphpプログラムの設計に役に立ちます。