PHP5 (cgi) を使用してファイルシステムからテンプレート ファイルを出力し、未加工の HTML を吐き出す問題があります。
private function fetch($name) {
$path = $this->j->config['template_path'] . $name . '.html';
if (!file_exists($path)) {
dbgerror('Could not find the template "' . $name . '" in ' . $path);
}
$f = fopen($path, 'r');
$t = fread($f, filesize($path));
fclose($f);
if (substr($t, 0, 3) == b'\xef\xbb\xbf') {
$t = substr($t, 3);
}
return $t;
}
BOM 修正を追加したにもかかわらず、Firefox がそれを受け入れるのにまだ問題があります。ここでライブ コピーを見ることができます: http://ircb.in/jisti/ (チェックアウトしたい場合は、私が投げたテンプレート ファイルhttp://ircb.in/jisti/home.html )
これを修正する方法はありますか?o_o