Home > Backend Development > PHP Tutorial > Thinkphp语言文件引不进来的有关问题

Thinkphp语言文件引不进来的有关问题

WBOY
Release: 2016-06-13 13:29:43
Original
870 people have browsed it

Thinkphp语言文件引不进来的问题
比如模板文件中有一个词是“注册”,我在LANG-》zh-cn-》common.php>中定义
return array(
  'register'=>"注册",
)
然后把模板中的“注册”二字 修改为 {:L(register)} 为什么显示 REGISETTER,而不显示“注册”二字呢?
我在config文件中 定义了 'DEFAULT_LANG' => 'zh-cn'

------解决方案--------------------
开发手册云 如果要在模板中输出语言变量不需要在Action中赋值,可以直接使用模板引擎特殊标签来直接输出语言定义的值:
{$Think.lang.lang_var}
可以输出当前选择的语言包里面定义的 lang_var 语言定义

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template