load_lang_js.php 360 B

12345678910111213141516
  1. <?php
  2. require_once __DIR__.'/../public/config.php';
  3. /*
  4. 加载js 语言包
  5. 范例
  6. <script>
  7. alert(gLocal.gui.tools);
  8. </script>
  9. */
  10. if(file_exists($_dir_lang.$currLanguage.".json")){
  11. echo "var gLocal = ".file_get_contents($_dir_lang.$currLanguage.".json").";";
  12. }
  13. else{
  14. echo "var gLocal = ".file_get_contents($_dir_lang."default.json").";";
  15. }
  16. ?>