function fetchAll($sql,$result_type=MYSQL_ASSOC){
$result=mysql_query($sql);
while (@$row=mysql_fetch_array($result,$result_type)){
$row[]=$row;
}
return $row;
}
查询所有记录的那个while (@$row=mysql_fetch_array($result,$result_type)){ $row[]=$row; } 不懂,能解释一下?