pg_field_is_null
(PHP 4 >= 4.2.0, PHP 5)
pg_field_is_null — 测试字段是否为 NULL
<h3>说明</h3>
int <strong>pg_field_is_null</strong>
( resource <code>$result</code>
, int <code>$row</code>
, mixed <code>$field</code>
)
<p>
<strong>pg_field_is_null()</strong> 测试字段是否为 <strong><code>NULL</code></strong>。如果字段在给出的行中为 <strong><code>NULL</code></strong> 则返回 1,如果字段在给出的行中不是 <strong><code>NULL</code></strong> 则返回 0。字段可以以列的索引号(数字)方式给出,也可以以字段名(字符串)方式给出。行的编号从 0 开始。
</p>
<p>
<p><strong>Example #1 <strong>pg_field_is_null()</strong> 例子</strong></p>
<?php
$dbconn = pg_connect("dbname=publisher") or die ("Could not connect");
$res = pg_query($dbconn, "select * from authors where author = 'Orwell'");
if ($res) {
if (pg_field_is_null($res, 0, "year") == 1) {
echo "The value of the field year is null.n";
}
if (pg_field_is_null($res, 0, "year") == 0) {
echo "The value of the field year is not null.n";
}
}
?>
</p>
<p><strong>Note</strong>:
<p>
本函数以前的名字为 pg_fieldisnull()。
</p>
</p>