修复数据库中阿拉伯语数据的编码

发布于 2024-10-17 01:40:39 字数 439 浏览 1 评论 0原文

修复数据库中阿拉伯数据的编码?

    function postTitle()
            {
        $postdb = mysql_query("SELECT * FROM wtable");
        $post = mysql_fetch_assoc($postdb);
            echo mb_detect_encoding($post['posttitle'],"UTF-8,ISO-8859-1");
            }
echo postTitle();

数据库编码:utf8_general_ci

结果:

????????? ?????????????? ????????? ????? ???????

fix encoding Arabic data from database ?

    function postTitle()
            {
        $postdb = mysql_query("SELECT * FROM wtable");
        $post = mysql_fetch_assoc($postdb);
            echo mb_detect_encoding($post['posttitle'],"UTF-8,ISO-8859-1");
            }
echo postTitle();

datebase encode: utf8_general_ci

result:

????????? ?????????????? ????????? ????? ???????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光是把杀猪刀 2024-10-24 01:40:39

假设脚本也采用 UTF8 编码,请确保连接也使用 UTF8:
使用:

mysql_query('SET names UTF8');

....在函数内的 SELECT 之前。

Assuming that the script is encoded UTF8 too, be sure that the connection also uses UTF8:
Use this:

mysql_query('SET names UTF8');

....before the SELECT inside the function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文