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

45 lines
1.1 KiB
Plaintext
Raw Normal View History

2002-10-18 07:52:09 +00:00
--TEST--
PostgreSQL pg_escape_bytea() functions (before connection)
2021-06-11 12:33:54 +00:00
--EXTENSIONS--
pgsql
2002-10-18 07:52:09 +00:00
--SKIPIF--
<?php include("inc/skipif.inc"); ?>
2002-10-18 07:52:09 +00:00
--FILE--
<?php
2003-05-20 00:14:46 +00:00
// optional functions
include('inc/config.inc');
$table_name = "table_18pg_escape_bytea_before";
2003-05-20 00:14:46 +00:00
$image = file_get_contents(__DIR__ . '/php.gif');
2003-05-20 00:14:46 +00:00
$esc_image = pg_escape_bytea($image);
$db = pg_connect($conn_str);
pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
@pg_query($db, "SET bytea_output = 'escape'");
pg_query($db, 'INSERT INTO '.$table_name.' (num, bin) VALUES (9876, E\''.$esc_image.'\');');
2003-05-20 00:14:46 +00:00
$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) {
2020-02-03 21:52:20 +00:00
echo "NG";
2003-05-20 00:14:46 +00:00
}
else {
2020-02-03 21:52:20 +00:00
echo "OK";
2003-05-20 00:14:46 +00:00
}
2002-10-18 07:52:09 +00:00
?>
--CLEAN--
<?php
include('inc/config.inc');
$table_name = "table_18pg_escape_bytea_before";
$db = pg_connect($conn_str);
pg_query($db, "DROP TABLE IF EXISTS {$table_name}");
?>
--EXPECTF--
Deprecated: pg_escape_bytea(): Automatic fetching of PostgreSQL connection is deprecated in %s on line %d
2002-10-18 07:52:09 +00:00
OK