/**
* 针对全局的模块定义的中文文件
* 一:模板需要修改
* 二:配置文件需要修改
*
*/
return array(
'welcome'=>'welcome',
'lan'=>'english',
'usernamenull'=>'username is null',
);
?>
设置语言方式一在common中设置
设计语言方式二:在Action中设置,使用L函数
[php]
//快捷设置语言
L('demo','多语言测试');
在页面引用并更换文字
[html] www.2cto.com
欢迎:
语言:
demo:
在Model中设置使用语言的方式:;需要加上前导符
如,在model中设置提示验证信息
[php]
protected $_validate=array(
//在模型中添加国际化
array('username','require','',0,0,1),
array('username','checklen','用户名长度不合法',0,'callback',3),
array('password','require','用户名必填',0,0,1),
array('repassword','require','用户名必填',0,0,1),
array('password','repassword','密码不一致',0,'confirm',1),
/ array('createip','email','邮箱格式不对',0,'regex',1),
);
http://www.bkjia.com/PHPjc/477785.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/477785.htmlTechArticle首先是多模板支持: 需要在tpl上面新建red文件夹和对应的action的html模板 conf.php //多模板支持 TMPL_SWITCH_ON=true, TMPL_DETECT_THEME=true, index.html a...