🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
* 用途 获取类的新实例和单实例 * 定义 ~~~ trait InstanceTrait { /** * 获取实例 * * @return self */ public static function getInstance() { return new static(); } /** * 获取单实例 * * @return self */ public static function getSingleton() { static $instance = null; if (! isset($instance)) { $instance = self::getInstance(); } return $instance; } } ~~~