You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
319 B

--TEST--
PostgreSQL pg_select()
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
include("pg_select.inc");
?>
--EXPECT--
array(1) {
[0]=>
array(3) {
["num"]=>
string(4) "1234"
["str"]=>
string(3) "AAA"
["bin"]=>
string(3) "BBB"
}
}
SELECT * FROM php_pgsql_test WHERE num=1234;
Ok