语言包内的php代码:
$_['heading_title']='hello';控制器:
$this->data['heading_title']=$this->language->get('heading_title');
视图:
<?php $heading_title ?>将变成hello 这里将语言包内的hello传递给视图内的变量$heading_titile;
这里的 $_[''] ,是什么意思?为什么可以用get('heading_title')来得到’hello‘为什么可以这样表示 $_ ?