(PHP 5, PECL OCI8 >= 1.1.0)
oci_result — 返回所取得行中字段的值
說明
mixed oci_result ( resource$statement
, mixed $field
)
oci_result() 返回由 oci_fetch()
所取得的當前行中 field
字段的數據。oci_result()
對所有類型都返回字符串只除了抽象類型(ROWID,LOB 和
FILE)。oci_result() 在出錯時返回 FALSE
。
可以使用列序號(從 1 開始)或列名(大寫)作為
col
的參數。
Note:
在 PHP 5.0.0 之前的版本必須使用 ociresult() 替代本函數。該函數名仍然可用,為向下兼容作為 oci_result() 的別名。不過其已被廢棄,不推薦使用。
要獲取 OCI8 擴展進行數據類型映射的細節,請參見驅動所支持的數據類型。
參見 oci_fetch_array(),oci_fetch_assoc(),oci_fetch_object(),oci_fetch_row() 和 oci_fetch_all()。
參數
statement
field
Can be either use the column number (1-based) or the column name (in uppercase).
返回值
Returns everything as strings except for abstract types (ROWIDs, LOBs and
FILEs). Returns FALSE
on error.
注釋
Note:
In PHP versions before 5.0.0 you must use ociresult() instead. This name still can be used, it was left as alias of oci_result() for downwards compatability. This, however, is deprecated and not recommended.
參見
oci_fetch_array() - Returns the next row from a query as an associative or numeric array oci_fetch_assoc() - Returns the next row from a query as an associative array oci_fetch_object() - Returns the next row from a query as an object oci_fetch_row() - Returns the next row from a query as a numeric array oci_fetch_all() - 獲取結果數據的所有行到一個數組