summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/18pg_escape_bytea_hex.phpt
blob: af2f3cf4d43d28ee53754688355fe3d6aa54c3c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--TEST--
PostgreSQL pg_escape_bytea() functions (hex format)
--SKIPIF--
<?php
include("skipif.inc");
skip_bytea_not_hex();
?>
--FILE--
<?php
// optional functions

include('config.inc');

$db = pg_connect($conn_str);
@pg_query($db, "SET bytea_output = 'hex'");

$image = file_get_contents(__DIR__ . '/php.gif');
$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";
}
?>
--EXPECT--
OK