この記事では主に PHP シングルトン モードを紹介します。サンプルではシングルトン モードの原理と実装テクニックを分析します。必要な方は参考にしてください。
この記事のサンプルは、 PHP シングルトン モードのサンプル パターンの実装方法について説明します。詳細は次のとおりです。
<?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();
概要: 以上がこの記事の全内容です。皆様の学習に少しでもお役に立てれば幸いです。
関連する推奨事項:
以上がPHPシングルトンモードの原理と実装方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。