当前位置:首页 > 笔记 > PHP

PHP 第2页

PHP 单例模式

夏立军6年前 (2020-07-17)999
PHP 单例模式
```phpclass TestClass{ //创建静态私有的变量保存该类对象 static private $instance; //防止使用new直接创建对象 private function __construct() { } //防止使用clone克隆对象 priv…