<?php #後盾網 houdunwang.com #後盾人 houdunren.com namespace app; /** * Class Person * * @package app */ class Person { /** * 保存對象實例 * @var */ protected static $isMake; /** * 不容許外部實例化 * Person constructor. */ private function __construct() { } /** * 使用靜態變量控制只會建立一次對象實例 * * @return mixed */ public static function make() { if (is_null(static::$isMake)) { static::$isMake = new static(); } return static::$isMake; } } $instance = Person::make();