-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/pgsql/tests/
File Upload :
Current File : //usr/src/php/ext/pgsql/tests/10pg_convert.phpt

--TEST--
PostgreSQL pg_convert()
--SKIPIF--
<?php
include("skipif.inc");
skip_server_version('8.5dev', '>=');
?>
--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'"
}

Copyright © 2017 || Recoded By Mr.Bumblebee