Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 mysql 数据库中有一些特殊字符..但我想将其转换为该字符的对应符号.. Ä 这是字符,对应的符号是 Đ 。我如何在 php 或 mysql 中转换它?
试试看:http://php.net/manual/fr/function.utf8-decode.php
http://php.net/manual/fr/function.utf8-decode.php
此函数将假定为 UTF-8 编码的数据解码为 ISO-8859-1。
或者:htmlentities($var, ENT_QUOTES, 'UTF-8');
htmlentities($var, ENT_QUOTES, 'UTF-8');