Php去除Bom
程序员文章站
2022-04-07 12:52:27
...
有时候文件因为是utf8有bom编码的方式,在一些情况下会产生错误。需要去除bom标记。
php代码:
$string = preg_replace( '/^(\xef\xbb\xbf)/', '', $string );