整个数据库的 MySQL 字符集转换 - [ISO-8859-1] 到 [UTF-8]
通常这是一个非常常见的问题,我已经阅读了很多关于将整个数据库转换为 UTF-8
的线程。
..
但是,我尝试了一些有用的php脚本。
我的问题是,当我的数据库是 ISO-8859-1 时,没有任何内容是以 ISO-8859-1 编码的。
在我的数据库中,与符号是 &
英镑符号是 £
.. 我尝试过的脚本完全从字符串“仅本周特别优惠 £450.00”中删除“£450.00
”
Normally this is a pretty common question, I've read through lots of threads here on SO about converting a whole db to UTF-8
.
..
However, I've tried a few php scripts in avail.
My problem is while my db is ISO-8859-1
none of the content is encoded in ISO-8859-1.
In my db an ampersand is &
a British pound symbol is £
..
The scripts i have tried complete remove "£450.00
" from string "special offer £450.00 this week only
"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
http://www.fractalizer。 ru/frpost_162/php-mysql-batch-changing-charset-and-collation-on-databases/
latin1 允许 0x80-0xFF 中的符号,并且使用 MySQL 本机函数进行转换应该没问题。无论如何都要备份。
Try this:
http://www.fractalizer.ru/frpost_162/php-mysql-batch-changing-charset-and-collation-on-databases/
latin1 allows symbols in 0x80-0xFF and conversion using MySQL native functions should go allright. Make backup anyway.