'配置值' 'DB_TYPE' => 'Sqlite', 'DB_NAME' => './Sqlite/showdoc.db.php', 'LANG_SWITCH_ON' => true, // 开启语言包功能 'LANG_AUTO_DETECT' => false, // 自动侦测语言 开启多语言功能后有效 'DEFAULT_LANG' => '{$DEFAULT_LANG}', // 默认语言 'LANG_LIST' => 'zh-cn,en-us', // 允许切换的语言列表 用逗号分隔 'VAR_LANGUAGE' => 'l', // 默认语言切换变量 );"; $ret = file_put_contents("../server/Application/Home/Conf/config.php", $config); return $ret ; } function write_js_lang(){ $lang = $_REQUEST['lang'] ? $_REQUEST['lang'] :"zh"; if ($lang == 'en') { replace_file_content("../web/index.html","zh-cn","en") ; replace_file_content("../web_src/index.html","zh-cn","en") ; } } function replace_file_content($file , $from ,$to ){ $content = file_get_contents($file); $content2 = str_replace($from,$to,$content); if ($content2) { file_put_contents($file,$content2); } }