International PHP Conference Munich 2025

Voting

: two plus two?
(Example: nine)

The Note You're Voting On

spambin at ya dot ru
11 years ago
pg_fetch_all_columns() returns array (empty array) even if the result set in empty (while pg_fetch_all() returns FALSE when the result set is empty)

<?
$result = pg_query("
SELECT 'something'
WHERE 1 = 2
");
var_dump( pg_fetch_all($result) ); // boolean false
var_dump( pg_fetch_all_columns($result) ); // array(0){}
?>

<< Back to user notes page

To Top