单例设计模式 在运行中,一个类只有一个实例。 意义:可以避免大量的new开销,比如连接mysql,redis等。 // 三私一公 class Db { private static $_single; private function __construct() {} private function __clone() {} public static fun… 2024-8-27 14:21 | 87 | 0 | 设计模式 57 字 | 2 分钟 单例模式