|
发表于 2012-9-25 23:05:02
|
显示全部楼层
CI语言包可以加个hook
PHP复制代码
/**
* 定义 Cier小站针对cier_lang 的 i18n 函数
* @example
* $author = __('ci_author');
* $ci_timestamp = __('ci_timestamp',array(':now' => date(config_item('log_date_format'))));
*/
if ( ! function_exists('__'))
{
function __ ($string, array $values = NULL, $lang = NULL)
{
$LANG =& load_class ('Lang', 'core');
$LANG->load('cier');
$string = $LANG->line($string);
return empty($values) ? $string : strtr($string, $values);
}
}
/* End of file Common.php */
/* Location: ./system/core/Common.php */
//cier_lang.php
$lang['cier_author'] = 'billzhao';
$lang['cier_timestamp'] = '当前时间 :now';
复制代码 |
|