+ [refac] Add a method to get the server charset and collation.

This commit is contained in:
liugang
2025-11-20 18:16:33 +08:00
parent 3d56851172
commit dc3fa3bdac
+18
View File
@@ -486,6 +486,24 @@ class dbh
return $collations['utf8mb4_uca1400_ai_ci'] ?? $collations['utf8mb4_0900_ai_ci'] ?? $collations['utf8mb4_unicode_ci'] ?? 'utf8mb4_general_ci';
}
/**
* 获取服务器支持的字符集和排序规则。
* Get the server charset and collation.
*
* @access private
* @return array
*/
private function getServerCharsetAndCollation(): array
{
if($this->dbConfig->driver != 'mysql') return ['charset' => 'utf8', 'collation' => ''];
$charsets = [];
$statement = $this->rawQuery("SHOW CHARSET WHERE Charset LIKE 'utf8%';");
while($charset = $statement->fetch(PDO::FETCH_ASSOC)) $charsets[$charset['Charset']] = ['charset' => $charset['Charset'], 'collation' => $charset['Default collation']];
return $charsets['utf8mb4'] ?? $charsets['utf8mb3'] ?? ['charset' => 'utf8', 'collation' => 'utf8_general_ci'];
}
/**
* Create database.
*