PHP:imagesetbrush()的用法_GD库图像处理函数
414
2023-12-15
(PHP 4 >= 4.2.0, PHP 5)
pg_field_is_null — 测试字段是否为 NULL
$result
, int $row
, mixed $field
)
pg_field_is_null() 测试字段是否为 NULL
。如果字段在给出的行中为 NULL
则返回 1,如果字段在给出的行中不是 NULL
则返回 0。字段可以以列的索引号(数字)方式给出,也可以以字段名(字符串)方式给出。行的编号从 0 开始。
Example #1 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.n";
}
if (pg_field_is_null($res, 0, "year") == 0) {
echo "The value of the field year is not null.n";
}
}
?>
Note:
本函数以前的名字为 pg_fieldisnull()。
#免责声明#
本站[绿夏技术导航]提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。如果您喜欢该程序或内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件[admin@lxwl520.com]与我们联系进行删除处理。敬请谅解!