謝晒的PHP網頁設計: [PHP] mysql_fetch_array() 與 mysql_fetch_assoc() 與 mysql_fetch_row() 的差異

謝晒的PHP網頁設計: [PHP] mysql_fetch_array() 與 mysql_fetch_assoc() 與 mysql_fetch_row() 的差異

瀏覽:1103
日期:2025-04-27
當需要從 DB 讀取資料時,我們常會使用下列的語法: while($row = mysql_fetch_array($result)) { echo "姓名:".$row['name']." 學號:".$row['no'].""; } 但是,有時候也會看到 mysql_fetch_array() 會替代為 mysql_fetch_assoc() 或 mysql_fetch_row() ,差別在於......看更多