函数:odbc_fetch_into() |
odbc_fetch_into取得返回的指定列。 语法: int odbc_fetch_into(int result_id, int [rownumber], array result_array); 返回值: 整数 函数种类: 数据库功能
本函数用来取得 Query 的返回资料列,并放入数组资料之中。参数 result_id 为 ODBC 返回 ID 值。参数 rownumber 为指定的取得列 (row)。数组参数 result_array 为取得列的资料数组,通常在前面加上 "&" 符号。例如 vbhunt@silverfox.com 所提供的范例 (27-Sep-1998) $cols = odbc_fetch_into($QueryID, $RowNum, &$YourArray);
整理: (www.phpernote.com)
|