我的语言文件是这样的:
<?php
header('Content-Type: text/html; charset=windows-1255');
function heb($phrase){
static $lang = array(
'title' => 'ודים אילוף כלבים',
);
return $lang[$phrase];
}
?>
我的 index.php 文件是这样的:
<?php
include('langs.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255" />
<title><?php echo heb('title'); ?></title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
</body>
</html>
但标题是“׳•׳“׳™׳ ׳׳™׳׳•׳£ ׳›׳׳'׳™׳”,而不是希伯来语中的单词-我该怎么做才能在希伯来语中编辑 lang 文件而不得到编码错误?