mirror of
https://github.com/php/php-src.git
synced 2026-04-28 10:43:30 +02:00
4ac70c6821
and pg_delete(). @ Added pg_metadate(), pg_convert(), pg_insert(), pg_select(), pg_update() @ and pg_delete(). (Yasuo)
18 lines
233 B
PHP
18 lines
233 B
PHP
--TEST--
|
|
PostgreSQL pg_convert()
|
|
--SKIPIF--
|
|
<?php include("skipif.inc"); ?>
|
|
--FILE--
|
|
<?php
|
|
include("pg_convert.inc");
|
|
?>
|
|
--EXPECT--
|
|
array(3) {
|
|
["num"]=>
|
|
int(1234)
|
|
["str"]=>
|
|
string(5) "'AAA'"
|
|
["bin"]=>
|
|
string(5) "'BBB'"
|
|
}
|