php类,构造函数 静态变量实例

作者:袖梨 2022-11-14
代码如下 复制代码
class dispatcher{
private $config;
public static $o;
function __construct(){
echo 'sss';
}
public static function getinstance(){
if (!self::$o){
self::$o = new dispatcher();
}
self::$o;
}
}
new dispatcher();

相关文章

精彩推荐