|
1 2 3 4 5 6 7 8 |
// BOMがついていたらBOMを削除して保存 $filepath = 'hoge.csv'; $contents = file_get_contents($filepath); $bom = pack('H*','EFBBBF'); if(substr($contents, 0, 3) === $bom) { $contents = substr($contents, 3); file_put_contents($filepath, $contents); } |
