使用 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