我有一个 MySQL 数据库,其中包含英语和阿拉伯语的书名,并且我正在使用一个PHP 类,该类可以自动将阿拉伯语文本音译成拉丁语脚本。
我希望我的输出 HTML 看起来像这样:
<h3>A book</h3>
<h3>كتاب <em>(kitaab)</em></h3>
<h3>Another book</h3>
PHP 有没有办法根据字符串中使用的 Unicode 字符和字形来确定字符串的语言?我试图得到这样的东西:
$Ar = new Arabic('EnTransliteration');
while ($item = mysql_fetch_array($results)) {
...
if (some test to see if $item['item_title'] has Arabic glyphs in it) {
echo "<h3>$item[item_title] <em>(" . $Ar->ar2en($item['item_title']) . ")</em></h3>";
} else {
echo "<h3>$item[item_title]</h3>";
}
...
}
幸运的是,当输入拉丁字符时,课程不会窒息,所以理论上我可以通过转换发送每个结果,但这似乎是浪费处理。
谢谢!
编辑: 我还没有找到检查字形或字符的方法。我想我可以将所有阿拉伯字符放在一个数组中,并检查数组中的任何内容是否与字符串的一部分匹配......
但是,我确实想出了一个最终可能会正常工作的临时解决方案。无论语言如何,它都会对每个标题进行转换,但仅在字符串更改时才输出括号中的音译:
while ($item = mysql_fetch_array($mysql_results)) {
$transliterate = trim(strtolower($Ar->ar2en($item['item_title'])));
$item_title = (strtolower($item['item_title']) == $transliterate) ? $item['item_title'] : $item['item_title'] . " <em>($transliterate)</em>";
echo "<h3>$item_title</h3>";
}