将 codeigniter 语言变量加载到数组中

Shi*_*jin 2 php arrays codeigniter

我正在使用代码点火器。我需要将所有变量从语言文件获取到数组。这可能吗?

有没有像下面这样的方法?

$a = $this->load->language('editor');
print_r($a);
Run Code Online (Sandbox Code Playgroud)

我尝试过$this->lang->language;但是,这将从加载的另一种语言文件中返回标签。

sha*_*fiq 5

$CI = & get_instance();
$arr = $CI->lang->language;
Run Code Online (Sandbox Code Playgroud)

或使用以下库

Class My_language {

    var $language = array();

    /**
     * List of loaded language files
     *
     * @var array
     */
    var $is_loaded = array();

    function __construct() {
        log_message('debug', "Language Class Initialized");
    }

    function load($langfile = '', $idiom = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '') {

        $langfile = str_replace('.php', '', $langfile);

        if ($add_suffix == TRUE) {
            $langfile = str_replace('_lang.', '', $langfile) . '_lang';
        }

        $langfile .= '.php';

        if (in_array($langfile, $this->is_loaded, TRUE)) {
            return;
        }

        $config = & get_config();

        if ($idiom == '') {
            $deft_lang = (!isset($config['language'])) ? 'english' : $config['language'];
            $idiom = ($deft_lang == '') ? 'english' : $deft_lang;
        }

// Determine where the language file is and load it
        if ($alt_path != '' && file_exists($alt_path . 'language/' . $idiom . '/' . $langfile)) {
            include($alt_path . 'language/' . $idiom . '/' . $langfile);
        } else {
            $found = FALSE;

            foreach (get_instance()->load->get_package_paths(TRUE) as $package_path) {
                if (file_exists($package_path . 'language/' . $idiom . '/' . $langfile)) {
                    include($package_path . 'language/' . $idiom . '/' . $langfile);
                    $found = TRUE;
                    break;
                }
            }

            if ($found !== TRUE) {
                show_error('Unable to load the requested language file: language/' . $idiom . '/' . $langfile);
            }
        }


        if (!isset($lang)) {
            log_message('error', 'Language file contains no data: language/' . $idiom . '/' . $langfile);
            return;
        }

        if ($return == TRUE) {
            return $lang;
        }

        $this->is_loaded[] = $langfile;
        $this->language = array();
        $this->language = $lang;
        return $this->language;
        unset($lang);

        log_message('debug', 'Language file loaded: language/' . $idiom . '/' . $langfile);
        return TRUE;
    }

}
Run Code Online (Sandbox Code Playgroud)

像这样打电话

$this->load->library('my_language');
    $arr = $this->my_language->load('demo');
    print_r($arr);
Run Code Online (Sandbox Code Playgroud)