程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL數組函數--mysql_fetch_array()

MySQL數組函數--mysql_fetch_array()

編輯:MySQL綜合教程

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外鍵在數據庫中的作用

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved