mirror of
https://github.com/php/php-src.git
synced 2025-01-15 16:24:37 +08:00
30 lines
523 B
PHP
30 lines
523 B
PHP
--TEST--
|
|
PostgreSQL pg_convert() (9.0+)
|
|
--SKIPIF--
|
|
<?php
|
|
include("skipif.inc");
|
|
skip_bytea_not_hex();
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
include 'config.inc';
|
|
|
|
$db = pg_connect($conn_str);
|
|
pg_query($db, "SET standard_conforming_strings = 0");
|
|
|
|
$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(6) "E'AAA'"
|
|
[""bin""]=>
|
|
string(12) "E'\\x424242'"
|
|
}
|