odbc_fetch_into
(PHP 4, PHP 5, PHP 7)
odbc_fetch_into — Fetch one result row into array
说明
odbc_fetch_into (
resource
$result_id
,
array &$result_array
[,
int $rownumber
] ) :
int
Fetch one result row into array.
参数
返回值
Returns the number of columns in the result; FALSE
on error.
范例
Example #1 odbc_fetch_into() examples
<?php
$rc = odbc_fetch_into($res_id, $my_array);
?>
or
<?php
$rc = odbc_fetch_into($res_id, $my_array, 2);
?>