大家好,我正在创建阿拉伯语网站。但问题是它不支持阿拉伯语内容。它来了。甚至我在.htaccess中放了charset="utf-8"。我还在每一页中放了meta标签。我将这些文件保存为utf-8支持的文件格式。甚至我把
header('Content-Type: text/html; charset=utf-8');
放在那里MySQL存储的数据以阿拉伯语显示,但如果我在标签中放入一些阿拉伯语,它将不支持
有人对此有一些想法,因为这是我的第一个阿拉伯语网站。
您可能需要在HTML中添加额外的名称。例如,如果您使用HTML5,它将看起来像:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
:
your content here
:
将字段排序规则的结构更改为:UTF8 general CI
尝试在开始时添加阿拉伯语的元字符集
<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.