update : 2015.11.03
php.shukuma.com검색:
|
pg_fetch_object(PHP 4, PHP 5) pg_fetch_object — Fetch a row as an object 설명
object pg_fetch_object
( resource
$result
[, int $row
[, int $result_type = PGSQL_ASSOC
]] )
object pg_fetch_object
( resource
$result
[, int $row
[, string $class_name
[, array $params
]]] )pg_fetch_object() returns an object with properties that correspond to the fetched row's field names. It can optionally instantiate an object of a specific class, and pass parameters to that class's constructor.
Speed-wise, the function is identical to pg_fetch_array(), and almost as fast as pg_fetch_row() (the difference is insignificant). 인수
반환값
An object with one attribute for each field
name in the result. Database NULL
values are returned as
예제
Example #1 pg_fetch_object() example
<?php 참고
|