我有问题要更新unicode字符的问题 -
字符á
有unicode U+00E0
但是如何在String的中间做呢?
update `table` set
`column` = "String with á sign in the middle"
where
`Column` = .......
带unicode的字符串怎么样?
谢谢
答案 0 :(得分:1)
在主查询之前发送此查询:(用于设置连接字符集)
mysql_query("SET character_set_results = 'utf8', character_set_client = 'utf8', character_set_connection = 'utf8', character_set_database = 'utf8', character_set_server = 'utf8'") or die();
它可能会帮助你。