update : 2015.11.03
php.shukuma.com검색:
|
oci_fetch_all(PHP 5, PECL OCI8 >= 1.1.0) oci_fetch_all — Fetches multiple rows from a query into a two-dimensional array 설명
int oci_fetch_all
( resource
$statement
, array &$output
[, int $skip = 0
[, int $maxrows = -1
[, int $flags = OCI_FETCHSTATEMENT_BY_COLUMN + OCI_ASSOC
]]] )Fetches multiple rows from a query into a two-dimensional array. By default, all rows are returned. This function can be called only once for each query executed with oci_execute(). 인수
반환값
Returns the number of rows in 예제
Example #1 oci_fetch_all() example
<?php
Example #2 oci_fetch_all() example with
<?php
Example #3 oci_fetch_all() with
<?php 주의
참고
|