mysqli::set_charset()set是 *connection的 * charset,也就是“我通过这个连接发送的所有字符串都将...
(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);$link = mysqli_connect('localhost', 'my_user', 'my_password', 'test');printf("Initial character set: %s\n", mysqli_character_set_name($link));/* change character set to utf8mb4 */mysqli_set_charset($link, "utf8mb4");printf("...
}// Set character set to utf8mb4 mode (default is utf8mb3 (utf8). mb4 is required for Emoji)mysqli_set_charset($db,'utf8mb4');// More info: http://stackoverflow.com/questions/279170/utf-8-all-the-way-through} } 开发者ID:LastResortGames,项目名称:ludumdare,代码行数:25,代码来源...