微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用php清除bom示例

核心代码

rush:PHP;"> function checkBOM ($filename) { global $auto; $contents = file_get_contents($filename); $charset[1] = substr($contents,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 ("BOM found,automatically removed."); }else { return ("BOM found."); } }else return ("BOM Not Found."); }

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

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

rush:PHP;"> ob_get_clean(); ob_clean(); header("Content-type: image/jpeg");

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

原文地址:https://www.jb51.cc/php/25022.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐