保存文件时PHP是否有这样的选项?
答案 0 :(得分:4)
在编写文件时,PHP永远不会自动附加BOM。你必须自己添加它:
$filecontents = chr(0xEF).chr(0xBB).chr(0xBF).$mycontents;
答案 1 :(得分:0)
它对我有用。谢谢!
$file = fopen("arquivos_gerados/teste.html","w");
fwrite($file,chr(0xEF).chr(0xBB).chr(0xBF).$content);
fclose($file);