我是靠谱客的博主 昏睡康乃馨,这篇文章主要介绍使用php清除bom示例,现在分享给大家,希望可以做个参考。

核心代码

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function checkBOM ($filename) { global $auto; $contents = file_get_contents($filename); $charset[1] = substr($contents, 0, 1); $charset[2] = substr($contents, 1, 1); $charset[3] = substr($contents, 2, 1); if (ord($charset[1]) == 239 && ord($charset[2]) == 187 && ord($charset[3]) == 191) { if ($auto == 1) { $rest = substr($contents, 3); rewrite ($filename, $rest); return ("<font color=red>BOM found, automatically removed.</font>"); }else { return ("<font color=red>BOM found.</font>"); } }else return ("BOM Not Found."); }

php清除莫明输出大法,用于输出图片前把前面所有输出清空

只要在header前连用两个函数,就可以解决...

复制代码
1
2
3
ob_get_clean(); ob_clean(); header("Content-type: image/jpeg");

附几个好用的BOM检测工具:
BOM检测.zip

最后

以上就是昏睡康乃馨最近收集整理的关于使用php清除bom示例的全部内容,更多相关使用php清除bom示例内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(152)

评论列表共有 0 条评论

立即
投稿
返回
顶部