php-src/ext/pgsql/tests/lcmess.inc
George Peter Banyard 1f42777927 Deprecate using the implicit default PgSQL connection
The DB connection should be provided in all cases as the first argument.
The overloaded function signatures will be removed in the future.
Warn about this change.

Part of https://wiki.php.net/rfc/deprecations_php_8_1.
2021-07-09 23:12:37 +02:00

21 lines
463 B
PHP

<?php
function _skip_lc_messages($conn, $lc_messages = 'C')
{
if (!_set_lc_messages($conn, $lc_messages)) {
die("skip Cannot set LC_MESSAGES to '{$lc_messages}'\n");
}
}
function _set_lc_messages($conn, $lc_messages = 'C')
{
if (pg_fetch_result(pg_query($conn, "SHOW LC_MESSAGES"), 0, 0) != $lc_messages) {
if (!@pg_exec($conn, "SET LC_MESSAGES='{$lc_messages}'")) {
return false;
}
}
return true;
}
?>