odbc_fetch_into
Fetch one result row into array
Description
intfalse odbc_fetch_into(Odbc\Result $statement, array &$array, intnull $row = null)
Parameters
-
statement
-
The ODBC result object.
-
array
-
The result array
that can be of any type since it will be converted to type
array. The array will contain the column values starting at array
index 0.
-
row
-
The 1-based number of the row to fetch. If omitted or
null, the
next row of the result set is fetched, as
odbc_fetch_row does. If the driver does not
support fetching rows by number, this parameter is ignored.
Return Values
Returns the number of columns in the result;
false on error.
Examples
Example #1 odbc_fetch_into examples
<?php
$rc = odbc_fetch_into($res_id, $my_array);
?>
<?php
$rc = odbc_fetch_into($res_id, $my_array, 2);
?>