<?php
class test{
protected function __construct(){
}
public static function getInstance(){
static $_test;
if (empty($_test)) {
$_test = new test();
}
return $_test;
}
}
为什么在单例模式中该类要有一个public static的方法,而其他的方法都不能用public方法。这样做的目的是什么
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…