mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
27 lines
426 B
PHP
27 lines
426 B
PHP
--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'"
|
|
}
|