|
PHP5中文手册
ocifetchinto(PHP 4, PHP 5, PECL oci8:1.0-1.2.4) ocifetchinto — 获取下一行到一个数组 说明
int ocifetchinto
( resource $statement
, array &$result
[, int $mode
] )
ocifetchinto() 获取 SELECT 的下一行到 result 数组。ocifetchinto() 将覆盖 result 以前的内容。在默认情况下,result 是一个索引从 0 开始的数组,含有所有非 NULL 的列。 mode 参数允许改变默认的行为。可以简单的将标志相加来使用多个标志(例如 OCI_ASSOC+OCI_RETURN_NULLS)。其有效值为:
Example#1 ocifetchinto() 例子
<?php 参见 oci_fetch_array(),oci_fetch_object(),oci_fetch_assoc(),oci_fetch_row(),oci_fetch() 和 oci_execute()。 |