有时候文件因为是utf8有bom编码的方式,在一些情况下会产生错误。需要去除bom标记。 php代码: $string = preg_replace( '/^(\xef\xbb\xbf)/', '', $string );