2014-11-04 107 views
0

反正是有检查计数的字符数为希伯来语language.Following是片段PHP希伯来文字符数

<?php 
$e_str="This is football";// 3 words 
$h_str="זה כדורגל";//hebrew translation of above 
$h_str= trim(addslashes($h_str)); 
echo 'English Count : '.str_word_count(mb_convert_encoding($e_str, 'HTML-ENTITIES', 'ISO-8859-1')).'<br/>';//prints 3 

echo 'Hebrew Count : '.str_word_count(html_entity_decode(mb_convert_encoding($h_str,'HTML-ENTITIES','UTF-8'),ENT_QUOTES,'UTF-8'));//prints zero 
?> 

大概是我应该得到的希伯来语算作“2”,但不是零。 任何解决方案?

+0

http://stackoverflow.com/questions/8290537/is-php-str-word-count-multibyte-safe – 2014-11-04 10:09:50

+0

感谢@Hanky웃Panky – 2014-11-05 11:00:29

回答

1

尝试将它分割一个空格并计算数组长度。

echo 'Hebrew Count : '.count(explode(' ', html_entity_decode(mb_convert_encoding($h_str,'HTML-ENTITIES','UTF-8'),ENT_QUOTES,'UTF-8')));//prints 2 
+0

雅这部作品,并带来数更接近实际数量。对我来说感谢@Scimonster – 2014-11-10 05:21:46