summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/10pg_convert.phpt
blob: b88b8e5798f37c6c69dea5fd56ea4a1be38bc659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
PostgreSQL pg_convert()
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
error_reporting(E_ALL);

include 'config.inc';

$db = pg_connect($conn_str);

$fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
$converted = pg_convert($db, $table_name, $fields);

var_dump($converted);
?>
--EXPECT--
array(3) {
  ["num"]=>
  string(4) "1234"
  ["str"]=>
  string(5) "'AAA'"
  ["bin"]=>
  string(5) "'BBB'"
}