update : 2015.11.03
php.shukuma.com

검색:
 
 
The mysqli_result class

The mysqli_result class

(PHP 5)

소개

Represents the result set obtained from a query against the database.

변경점

변경점
버전 설명
5.4.0 Iterator support was added, as mysqli_result now implements Traversable.

클래스 개요

mysqli_result implements Traversable {
/* 프로퍼티 */
array $lengths;
/* 메소드 */
bool data_seek ( int $offset )
mixed fetch_all ([ int $resulttype = MYSQLI_NUM ] )
mixed fetch_array ([ int $resulttype = MYSQLI_BOTH ] )
array fetch_assoc ( void )
object fetch_field_direct ( int $fieldnr )
object fetch_field ( void )
array fetch_fields ( void )
object fetch_object ([ string $class_name = "stdClass" [, array $params ]] )
mixed fetch_row ( void )
bool field_seek ( int $fieldnr )
void free ( void )
}

Table of Contents