我正在使用一个已经以.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
以外的其他东西?