測試欄位是否為 null

pg_field_is_null

(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)

pg_field_is_null測試欄位是否為 null

說明

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

pg_field_is_null() 測試欄位是否為 null。如果欄位在給出的行中為 null 則返回 1,如果欄位在給出的行中不是 null 則返回 0。欄位可以以列的索引號(數字)方式給出,也可以以欄位名(字串)方式給出。行的編號從 0 開始。

示例 #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($res0"year") == 1) {
            echo 
"The value of the field year is null.\n";
        }
        if (
pg_field_is_null($res0"year") == 0) {
            echo 
"The value of the field year is not null.\n";
      }
   }
?>

注意:

本函式以前的名字為 pg_fieldisnull()

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *