将UTF8转换为希伯来语

时间:2015-08-14 09:59:42

标签: php encoding utf-8 hebrew

我从数组单元格中获取此文本:

$array["cell"] = ࡱá;  þÿ

当我做" mb_detect_encoding($ cell);"时,我知道它是UTF8。 如果它的UTF8,它应该显示希伯来语,但我也在这里阅读了很多帖子并实现了很多解决方案的可能性,但我无法将UTF8文本变成希伯来文。我试过了:

$retstr = utf8_encode($cell);

$retstr = iconv("UTF-8", "windows-1255", $cell);

$retstr = mb_convert_encoding($cell, 'UTF-8', 'ISO-8859-1');

$retstr = iconv(' ISO-8859-1', 'UTF-8', $cell);

$retstr = iconv('cp1250', 'utf-8', $cell);

没有什么能把这个文本变成希伯来语。

任何人都可以帮忙吗?

0 个答案:

没有答案