这是类中的一个函数
function base(& $get,& $post) {
$this->time = time();
$this->ip =util::getip();
$this->get=& $get;
$this->post=& $post;
$this->init_db();
$this->init_cache();
$this->init_user();
$this->init_template();
$this->checkbanned();
}
其中的&符号是什么意思?
弑天下