在 MySQL 中查询后,为了避免Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given
错误,我做了以下检查:
if($result != null){
while($row = mysql_fetch_assoc($result)){
//Do awesome things
}
}
如果结果为空,我不想做任何事情,因此不需要 if()。我确信有可能以更好的方式进行检查。任何想法?