Opencart如何在php循环中添加语言文件中的所有内容

前端之家收集整理的这篇文章主要介绍了Opencart如何在php循环中添加语言文件中的所有内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法从Opencart语言中读取所有内容

目前我必须:

Controller
$this->load->language('help');          
$this->data['heading_title'] = $this->language->get('heading_title');    
$this->data['tab1'] = $this->language->get('tab1');

语言文件

<?PHP
// Heading
$_['heading_title']      = 'Help';
$_['tab1'] = 'Account';    
?>
最简单的方法是在控制器顶部使用数组合并
$this->data = array_merge($this->data,$this->language->load('language/file'));

或简单地说

$this->data += $this->language->load('language/file');

编辑

对于2.x,请使用

$data = array_merge($this-> data,$this-> language-> load(‘language / file’));

3.x自动执行此操作

原文链接:https://www.f2er.com/php/137367.html

猜你在找的PHP相关文章