MySQL有一類獨特的函數,稱為MySQL數組函數,下面為您介紹的就是其中的MySQL數組函數--mysql_fetch_array()。
mysql_fetch_array 從結果集中取得一行作為關聯數組,或數字數組,或二者兼有。
依次調用此函數也會返回結果集的下一行。
該MySQL數組函數語法:mysql_fetch_array(resource result, result type)
返回結果一般為:
Array ( [0] => 1 [ID] => 1 [1] => 58.215.76.161 [IP] => 58.215.76.161 [2] => linux [description] => linux [3] => 1 [4] => http [protocol] => http [5] => 80 [port] => 80 [6] => http [7] => check_http [command] => check_http )
如果只需要關聯數組則命令參數為
mysql_fetch_array($rs,MYSQL_ASSOC) 相當於函數mysql_fetch_assoc()。
返回結果為
Array ( [ID] => 1 [IP] => 58.215.76.161 [description] => linux [protocol] => http [port] => 80 [command] => check_http )
如果只需要數字數組則命令參數為
mysql_fetch_array($rs,MYSQL_NUM) 相當於函數mysql_fetch_row().
返回結果為
Array ( [0] => 1 [1] => 58.215.76.161 [2] => linux [3] => 1 [4] => http [5] => 80 [6] => http [7] => check_http )
MySQL日期的相關函數介紹
帶您深入了解MYSQL Cast函數
查看三種MySQL字符集的方法
查看MySQL默認字符集
MySQL外鍵在數據庫中的作用