fwrite() and UTF8

后端 未结 8 936
隐瞒了意图╮
隐瞒了意图╮ 2020-12-05 16:02

I am creating a file using php fwrite() and I know all my data is in UTF8 ( I have done extensive testing on this - when saving data to db and outputting on normal webpage a

8条回答
  •  离开以前
    2020-12-05 16:41

    $handle = fopen($file,"w");
    fwrite($handle, pack("CCC",0xef,0xbb,0xbf));
    fwrite($handle,$file); 
    fclose($handle);
    

提交回复
热议问题