How to remove multiple UTF-8 BOM sequences(如何删除多个 UTF-8 BOM 序列)
问题描述
使用 PHP5 (cgi) 从文件系统输出模板文件并且在输出原始 HTML 时遇到问题.
Using PHP5 (cgi) to output template files from the filesystem and having issues spitting out raw 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'xefxbbxbf') {
$t = substr($t, 3);
}
return $t;
}
即使我添加了 BOM 修复,我仍然遇到 Firefox 接受它的问题.您可以在此处查看实时副本:http://ircb.in/jisti/(以及模板文件我如果你想检查它,请扔在 http://ircb.in/jisti/home.html出)
Even though I've added the BOM fix I'm still having problems with Firefox accepting it. You can see a live copy here: http://ircb.in/jisti/ (and the template file I threw at http://ircb.in/jisti/home.html if you want to check it out)
知道如何解决这个问题吗?o_o
Any idea how to fix this? o_o
推荐答案
你可以使用下面的代码去除 utf8 bom
you would use the following code to remove utf8 bom
//Remove UTF8 Bom
function remove_utf8_bom($text)
{
$bom = pack('H*','EFBBBF');
$text = preg_replace("/^$bom/", '', $text);
return $text;
}
这篇关于如何删除多个 UTF-8 BOM 序列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何删除多个 UTF-8 BOM 序列
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01