| Server IP : 156.238.232.47 / Your IP : 216.73.216.150 Web Server : nginx/1.25.3 System : Linux C202504152095410 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : www ( 1000) PHP Version : 8.3.25 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /www/data/wwwroot/2025_10_31_03/config/ |
Upload File : |
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
// | Copyright (c) 2011~2018 http://shopxo.net All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://opensource.org/licenses/mit-license.php )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 多语言设置
// +----------------------------------------------------------------------
$default_lang = MyFileConfig('common_multilingual_user_default_value', '', 'zh', true);
return [
// 默认语言
'default_lang' => empty($default_lang) ? 'zh' : $default_lang,
// 允许的语言列表(preg 正则匹配、code 语言编码、语言名称在对应语言文件中)
// app/service/MultilingualService.php 文件中处理语言逻辑
// app/service/ConstService.php 文件中对应common_multilingual_list语言列表
// app/lang 下语言文件也对应要增加即可
'allow_lang_list' => [
// 简体中文
['preg' => 'zh-c', 'code' => 'zh'],
// 繁体中文
['preg' => 'zh-t', 'code' => 'cht'],
// 英文
['preg' => 'en', 'code' => 'en'],
// 俄语
['preg' => 'rn', 'code' => 'ru'],
// 韩语
['preg' => 'ko', 'code' => 'kor'],
// 泰语
['preg' => 'th', 'code' => 'th'],
// 日语
['preg' => 'jp', 'code' => 'jp'],
// 德语
['preg' => 'de', 'code' => 'de'],
// 荷兰语
['preg' => 'nl', 'code' => 'nl'],
// 越南语
['preg' => 'vi', 'code' => 'vie'],
// 意大利语
['preg' => 'it', 'code' => 'it'],
// 西班牙语
['preg' => 'es', 'code' => 'spa'],
// 法语
['preg' => 'fr', 'code' => 'fra'],
// 瑞典语
['preg' => 'sv', 'code' => 'swe'],
],
// 多语言url请求自动侦测变量名
'detect_var' => 'lang',
// 是否使用Cookie记录
'use_cookie' => true,
// 多语言cookie变量
'cookie_var' => 'lang',
// 多语言header变量
'header_var' => 'lang',
// 扩展语言包
'extend_list' => [],
// Accept-Language转义为对应语言包名称
'accept_language' => [],
// 是否支持语言分组
'allow_group' => false,
];
?>