php8.5
Home/ Manual/ uodbc / functions/ odbc_fetch_into

odbc_fetch_into

PHP function Edit on GitHub ✎

(PHP 4, PHP 5, PHP 7, PHP 8)

Fetch one result row into array

Description

odbc_fetch_into(Odbc\Result $statement, array $array, int|null $row = null): int|false

Fetch one result row into array.

Parameters

statement

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.

Changelog

VersionDescription
8.4.0row is now nullable, and its default value changed from 0 to null, consistent with odbc_fetch_row().

Examples

odbc_fetch_into() examples

php
<?php
$rc = odbc_fetch_into($res_id, $my_array);
?>

or

php
<?php
$rc = odbc_fetch_into($res_id, $my_array, 2);
?>

Source: reference/uodbc/functions/odbc-fetch-into.xml · from the official PHP manual (php/doc-en)