1

大家好,我正在创建阿拉伯语网站。但问题是它不支持阿拉伯语内容。它来了 ????????????. 即使我把 charset="utf-8" 放在 .htaccess 中。我还在每个页面中放置了元标记。我将文件保存为 utf-8 支持文件格式。即使我把header('Content-Type: text/html; charset=utf-8'); MySQL 存储的数据放在那里,以阿拉伯语显示,但如果我在标签中放一些阿拉伯语,它将不支持

有人对此有一些想法,因为这是我的第一个阿拉伯语网站。

4

3 回答 3

1

您可能希望在 HTML 中添加额外的名称。例如,如果您使用的是 HTML 5,它将如下所示:

<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
:
your content here
:
于 2013-02-12T05:28:57.577 回答
1

将字段 Collat​​ion 的结构更改为:UTF8 general CI

于 2016-01-12T08:15:31.097 回答
0

尝试在开始时为阿拉伯语添加元字符集

<META HTTP-EQUIV="Content-Type"  CONTENT="text/html; CHARSET=iso-8859-6">

或者您可以通过以下步骤进行尝试:-

Displaying Arabic text using PHP

1. Don't use the short tags <? ?>. Use the full tags <?php ?>

2. Remove the quotes and semicolon from the first line and others that are outside the php tags
"<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">";

3. Close the span tag <span lang='ar-kw'

4. Make sure save the file with utf-8 encoding. You might be saving it with another coding.
于 2013-02-12T05:27:29.813 回答