php和js - >导入文件时的html编码

时间:2016-03-21 15:36:11

标签: javascript php html encoding character-encoding

我正在使用一个已经以.js格式(https://github.com/amsul/pickadate.js/tree/master/lib/translations)完成大量翻译的选择器。 所以我把它们导入了 file_get_contents("../lib/translations/fr_FR.js")

打印时我得到: monthsFull: [ 'Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin'

而不是:

monthsFull: [ 'Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre' ],

所以基于对堆栈溢出的研究,我正在跳这些方法会帮助我:

mb_convert_encoding, iconv...没有用!

也许我应该使用除file_get_contents以外的其他东西?

0 个答案:

没有答案