connect.inc.php 420 B

12345678910111213
  1. <?php
  2. if (!empty($this->config['charset'])) {
  3. $sql = '';
  4. $method = 'SET NAMES';
  5. if (!empty($this->config['connection_method'])) {
  6. $method = $this->config['connection_method'];
  7. }
  8. $sql.= "{$method} '{$this->config['charset']}'";
  9. if ($method == 'SET NAMES' && !empty($this->config['collation'])) {
  10. $sql.= " COLLATE '{$this->config['collation']}'";
  11. }
  12. $this->pdo->exec($sql);
  13. }