企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
* 用途 获取类的新实例和单实例 * 定义 ~~~ 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; } } ~~~