|
pg_field_is_nullTest if a field is SQL NULL Description
int pg_field_is_null
( resource
$result
, int $row
, mixed $field
)
int pg_field_is_null
( resource
$result
, mixed $field
)pg_field_is_null tests if a field in a PostgreSQL result resource is SQL NULL or not.
Parameters
Return Values
Returns 1 if the field in the given row is SQL NULL, 0
if not. Examples
Example #1 pg_field_is_null example
<?php |