(PHP 4, PHP 5, PHP 7, PHP 8)
odbc_fetch_into — Fetch one result row into array
Fetch one result row into array.
statementODBC 结果对象.
arrayThe 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.
rowThe row number.
Returns the number of columns in the result;
false on error.
| 版本 | 说明 |
|---|---|
| 8.4.0 |
statement 现在需要 Odbc\Result
实例;之前需要 resource。
|
| 8.4.0 |
row is now nullable.
|
示例 #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);
?>