编码为阿拉伯语问题

发布于 2024-11-01 07:10:40 字数 160 浏览 3 评论 0原文

我需要将编码更改为 windows-1256,如下所示:

print utf8_encode($text)

不是这样:

print windows-1256_encode($text) 

i need change encode to windows-1256 like this:

print utf8_encode($text)

not ture:

print windows-1256_encode($text) 

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

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

发布评论

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

评论(3

十年不长 2024-11-08 07:10:40

我遇到了与您几乎相同的问题,我想使用 ODBC 连接通过 php 从 SQL Server 2008 R2 检索阿拉伯数据字段,然后我发现获取正确的信息取决于使用“ iconv ”,如下所示:

echo iconv("","utf-8",$result);

所以您可以看到我没有提到第一种编码,而是我想要显示阿拉伯语数据的方式(utf8)。

I had almost the same problem as you do where I wanted to retrieve Arabic data fields from SQL Server 2008 R2 with php using ODBC connection and then I found that getting the right information depends on using " iconv " like this:

echo iconv("","utf-8",$result);

So you can see I didn't mention the first encoding but the way I wanted to display my Arabic data (utf8).

少女的英雄梦 2024-11-08 07:10:40

除了 Stewie 的答案之外,您还可以使用 iconv 函数。

Alternatively to Stewie's answer you can use the iconv functions.

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