LangAction.class.php 751 B

123456789101112131415161718192021222324
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Fanwe 方维直播系统
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: 云淡风轻(1956838968@qq.com)
  8. // +----------------------------------------------------------------------
  9. //将语言包载入JS
  10. class LangAction extends BaseAction{
  11. public function js(){
  12. $str = "var LANG = {";
  13. foreach($this->lang_pack as $k=>$lang)
  14. {
  15. $str .= "\"".$k."\":\"".$lang."\",";
  16. }
  17. $str = substr($str,0,-1);
  18. $str .="};";
  19. header("Content-Type: text/javascript");
  20. echo $str;
  21. }
  22. }
  23. ?>