php-src/ext/pgsql/tests/18pg_escape_bytea_hex.phpt

34 lines
694 B
Plaintext
Raw Normal View History

2002-10-18 07:52:09 +00:00
--TEST--
PostgreSQL pg_escape_bytea() functions (hex format)
2002-10-18 07:52:09 +00:00
--SKIPIF--
<?php
include("skipif.inc");
skip_bytea_not_hex();
?>
2002-10-18 07:52:09 +00:00
--FILE--
<?php
2003-05-20 00:14:46 +00:00
// optional functions
include('config.inc');
$db = pg_connect($conn_str);
@pg_query($db, "SET bytea_output = 'hex'");
$image = file_get_contents(dirname(__FILE__) . '/php.gif');
2003-05-20 00:14:46 +00:00
$esc_image = pg_escape_bytea($image);
pg_query($db, 'INSERT INTO '.$table_name.' (num, bin) VALUES (9876, \''.$esc_image.'\');');
$result = pg_query($db, 'SELECT * FROM '.$table_name.' WHERE num = 9876');
$rows = pg_fetch_all($result);
$unesc_image = pg_unescape_bytea($rows[0]['bin']);
if ($unesc_image !== $image) {
echo "NG";
}
else {
echo "OK";
}
2002-10-18 07:52:09 +00:00
?>
--EXPECT--
OK