日期:2014-05-17 浏览次数:20492 次
public function get_one($sql,$result_type = MYSQL_ASSOC) { $query = $this->query($sql); $rt =& mysql_fetch_array($query,$result_type); //这个等号后面有个"&"符号,是什么意思 $this->write_log("获取一条记录 ".$sql); return $rt; }