ora_fetch_into
(PHP 3, PHP 4 )
ora_fetch_into -- 將一行數據放入數組
描述
int ora_fetch_into ( resource cursor, array result [, int flags])
取得一行數據並將它放入到一個數組中。參數 flags 有兩個標誌值:如果設定 ORA_FETCHINTO_NULLS 標誌,值為 NULL 的列設定在數組中;如果設定 ORA_FETCHINTO_ASSOC 標誌,將創建一個元素由資料庫欄位命名的數組。
返回所取得行的列數。
ora_fetch_into()例子
<?php
$results = array();
ora_fetch_into($cursor, $results);
echo $results[0];
echo $results[1];
$results = array();
ora_fetch_into($cursor, $results, ORA_FETCHINTO_NULLS|ORA_FETCHINTO_ASSOC);
echo $results['MyColumn'];
?>