Skip to content

Instantly share code, notes, and snippets.

@iakio
Created December 26, 2016 10:58
Show Gist options
  • Save iakio/701e90d70f4684d5055668e8af0e5d68 to your computer and use it in GitHub Desktop.
Save iakio/701e90d70f4684d5055668e8af0e5d68 to your computer and use it in GitHub Desktop.
--TEST--
Hello
--FILE--
<?php
$conn = new PDO("pgsql:options='-c client_encoding=utf8'", "postgres");
$stmt = $conn->query("show client_encoding");
echo $stmt->fetchColumn(0), PHP_EOL;
$conn = new PDO("pgsql:options='-c client_encoding=sql_ascii'", "postgres");
$stmt = $conn->query("show client_encoding");
echo $stmt->fetchColumn(0), PHP_EOL;
--EXPECT--
UTF8
SQL_ASCII
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment