PHP: "UTF-8 BOM olmadan" olarak kodlanmış bir dosya oluşturmak için nasıl

0 Cevap php

Sanırım gibi, size en biz dosyalar için aşağıdaki kodlamaları olduğunu biliyoruz:

  • ANSI
  • UTF-8

UTF-8 is recognized by adding three chars at the beginning of the file but those chars causes some troubles in PHP Language as you know So we use

  • UTF-8 BOM olmadan (yerine UTF-8)

Here is my question: How can we write a new file (Using PHP) with the encoding of (UTF-8 Without BOM) either using frwite() or any other function (Doesn't matter)

(Ben php fonksiyonları ile bir dosya oluşturma hakkında soruyorum> editör ayarları hakkında sormuyorum)

0 Cevap