pg_fetch_result
(PHP 4 >= 4.2.0, PHP 5)
pg_fetch_result — 从结果资源中返回值
<h3>说明</h3>
mixed <strong>pg_fetch_result</strong>
( resource <code>$result</code>
, int <code>$row</code>
, mixed <code>$field</code>
)
<p>
<strong>pg_fetch_result()</strong> 根据由 pg_query() 返回的 <code>result</code> 资源返回相应的值。<code>row</code> 为整型数。<code>field</code> 为字段名(字符串)或字段索引(整数)。<code>row</code> 和 <code>field</code> 指明了查询结果中的哪个单元被返回。行编号从 0 开始。除了用字段名之外,还可以用不带引号的数字作为字段索引。字段索引从 0 开始。
</p>
<p>
PostgreSQL 有很多内置的类型,这里只直接支持基本类型。所有形式的
integer,boolean 和 void 类型都被返回为
integer 值。所有形式的 float 和 real 类型都被返回为
float 值。Boolean 类型被返回为 "t" 或者
"f"。所有其它类型包括数组都被返回为字符串,该字符串的格式和默认的
PostgreSQL 风格一样,可以在 <strong>psql</strong> 程序中看到。
</p>