我需要创建一个解析.htm文件的脚本。 这些.htm文件来自捷克网站,当在记事本中打开文件时,我可以看到例如:Číslo
我首先将源代码导入字符串:
mb_internal_encoding("UTF-8");
$content = file_get_contents($filename);
然后我试着找到Číslo:
$str_init = "Číslo";
$init = mb_strpos($content, $str_init) ;
$ init返回FALSE ...
有什么想法吗?
答案 0 :(得分:2)
保存您的PHP文件with
BOM。