一聚教程网:一个值得你收藏的教程网站

热门教程

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

时间:2022-11-14 23:01:28 编辑:袖梨 来源:一聚教程网

代码如下 复制代码
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();

热门栏目