odbc_fetch_into
(PHP 4, PHP 5, PHP 7)
odbc_fetch_into — Fetch one result row into array
Описание
odbc_fetch_into
( resource
$statement
, array &$array
, int $row
= 0
) : int|falseFetch one result row into array.
Список параметров
-
statement
-
The result resource.
-
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 row number.
Возвращаемые значения
Returns the number of columns in the result;
false
on error.
Примеры
Пример #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);
?>