pg_set_client_encoding
Function • Params and return types changed in PHP 8.0
Set the client encoding.
pg_set_client_encoding Function synopsis
pg_set_client_encoding($connection, string $encoding = <default>): int
Parameters
$connection
$encoding
OptionalTypestringDefault value
The required client encoding. One of SQL_ASCII, EUC_JP,
EUC_CN, EUC_KR, EUC_TW,
UNICODE, MULE_INTERNAL, LATINX (X=1...9),
KOI8, WIN, ALT, SJIS,
BIG5 or WIN1250.
Return value
Typeint
Returns 0 on success or -1 on error.
Changes to the pg_set_client_encoding Function
PHP 8.0
- Return type added:
int - Parameter type added for parameter #2 (
$encoding):string - Parameter default value added for position #2 (
$encoding):<default>
- pg_set_client_encoding($connection, $encoding)
+ pg_set_client_encoding($connection, string $encoding = <default>): int pg_set_client_encoding Function Availability
pg_set_client_encoding Function Availability| PHP Version | Availability |
|---|---|
| PHP 8.6Upcoming Release | Yes |
| PHP 8.5Supported (Latest) | Yes |
| PHP 8.4Supported | Yes |
| PHP 8.3Security-Fixes Only | Yes |
| PHP 8.2Security-Fixes Only | Yes |
| PHP 8.1Unsupported | Yes |
| PHP 8.0Unsupported | Yes |
| PHP 7.4Unsupported | Yes |
| PHP 7.3Unsupported | Yes |
| PHP 7.2Unsupported | Yes |
| PHP 7.1Unsupported | Yes |
| PHP 7.0Unsupported | Yes |
| PHP 5.6Unsupported | Yes |
| PHP 5.5Unsupported | Yes |
| PHP 5.4Unsupported | Yes |
| PHP 5.3Unsupported | Yes |