本文整理汇总了PHP中app::get_lang方法的典型用法代码示例。如果您正苦于以下问题:PHP app::get_lang方法的具体用法?PHP app::get_lang怎么用?PHP app::get_lang使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app
的用法示例。
在下文中一共展示了app::get_lang方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct(&$app)
{
$this->app = $app;
$this->pagedata =& base_render::$_vars;
$this->tmpl_cachekey('lang', app::get_lang());
//设置模版所属语言包
}
示例2: __construct
function __construct($app_id)
{
$this->app_id = $app_id;
$this->app_dir = APP_DIR . '/' . $app_id;
$this->res_url = kernel::base_url() . '/app/' . $app_id . '/statics';
$this->res_dir = APP_DIR . '/' . $app_id . '/statics';
$this->app_lang = app::get_lang();
$this->init_lang_pack();
//todo:初始化语言包
}
示例3: tips_item_by_app
static function tips_item_by_app($app_id)
{
$lang = app::get_lang();
$tips = array();
foreach (file(APP_DIR . '/' . $app_id . '/lang/' . $lang . '/tips.txt') as $tip) {
$tip = trim($tip);
if ($tip) {
$tips[] = $tip;
}
}
return $tips;
}