self::$instance =& $this
class CI_Base {
private static $instance;
public function CI_Base()
{
self::$instance = & $this;
}
public static function &get_instance()
{
return self::$instance;
}
}
function &get_instance ()
{
return CI_Base::get_instance();
}このクラスは何をしますか?
-----解決策------ -------------
PHP4との互換性のために
------解決策------------------
グーグル「シングルケースモード」
と上記の返信