请输入您要查询的百科知识:

 

词条 pg_field_is_null
释义

pg_field_is_null

(PHP 4 >= 4.2.0)

pg_field_is_null -- 测试字段是否为 NULL

说明

int pg_field_is_null ( resource result, int row, mixed field)

pg_field_is_null() 测试字段是否为 NULL。如果字段在给出的行中为 NULL 则返回 1,如果字段在给出的行中不是 NULL 则返回 0。字段可以以列的索引号(数字)方式给出,也可以以字段名(字符串)方式给出。行的编号从 0 开始。

pg_field_is_null()例子
<?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.\";
}
if (pg_field_is_null($res, 0, "year") == 0) {
echo "The value of the field year is not null.\";
}
}
?>注: 本函数以前的名字为 pg_fieldisnull()。

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 10:15:10