json_encode won't encode French characters

后端 未结 5 1696
感动是毒
感动是毒 2020-12-06 15:22

I\'m trying to work with French characters. For whatever reason, PHP won\'t output them correctly unless I force the ISO-8859-1 character set (which I really don\'t

5条回答
  •  猫巷女王i
    2020-12-06 16:00

    Try to work on sources directly in utf8.

    I was faced with the same problem, and used this simple solution: When you create a new PHP or Javascript source file, ensure it is encoded in utf8. I use Ultra Edit, and chose the option “UTF8 no bom”. This simple step resolved all my problems with encoding characters.

    All modern browsers support utf8, so encode your webpages with this. For compatibility, it is simpler if all your source files are also in utf8.

    This follows web standards.

提交回复
热议问题