标签:地方 class ndt lan cal log putenv lis images
我们在写一些系统的时候为了方便不同国家的人来进行阅读
这个系统最主要的是目录设置的问题
下面是目录结构
注意的地方locale和index.php为同级目录
locale目录下文件如下
编辑的文件是在.po里面 然后通过poedit编译成.mo文件 .mo文件为二进制文件
在php中,可以通过_("") 函数来读取这里面的翻译内容
index.php内容如下
1 putenv("LANG=zh_CN"); 2 setlocale(LC_ALL,‘zh_CN.UTF-8‘); 3 bindtextdomain("zh_CN", "./locale"); 4 textdomain("zh_CN"); 5 6 // putenv("LANG=en_CA"); 7 // setlocale(LC_ALL,‘en_CA.UTF-8‘); 8 // bindtextdomain("en_CA","./locale"); 9 // textdomain("en_CA"); 10 11 echo _(‘English‘);
代码下载
链接:http://pan.baidu.com/s/1c12XPmS 密码:j7g4
还没更新完 后面会写详细点
标签:地方 class ndt lan cal log putenv lis images
原文地址:http://www.cnblogs.com/haha520/p/6731621.html