odbc_fetch_into

(PHP 4, PHP 5, PHP 7)

odbc_fetch_intoFetch one result row into array

说锟斤拷

odbc_fetch_into ( resource $result_id , array &$result_array [, int $rownumber ] ) : int

Fetch one result row into array.

锟斤拷锟斤拷

result_id

The result resource.

result_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.

rownumber

The row number.

锟斤拷锟斤拷值

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_array2);
?>