php8.5
Home/ Manual/ pgsql / functions/ pg_num_fields

pg_num_fields

PHP function Edit on GitHub ✎

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

Returns the number of fields in a result

Description

pg_num_fields(PgSql\Result $result): int

pg_num_fields() returns the number of fields (columns) in the PgSql\Result instance.

Note

This function used to be called pg_numfields().

Parameters

result

Result

Return Values

The number of fields (columns) in the result. On error, -1 is returned.

Changelog

VersionDescription

Examples

pg_num_fields() example

php
<?php
$result = pg_query($conn, "SELECT 1, 2");

$num = pg_num_fields($result);

echo $num . " field(s) returned.\n";
?>

The above example will output:

output
2 field(s) returned.

See Also

Source: reference/pgsql/functions/pg-num-fields.xml · from the official PHP manual (php/doc-en)