本文整理汇总了PHP中I18n::detect_lang方法的典型用法代码示例。如果您正苦于以下问题:PHP I18n::detect_lang方法的具体用法?PHP I18n::detect_lang怎么用?PHP I18n::detect_lang使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类I18n
的用法示例。
在下文中一共展示了I18n::detect_lang方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: defined
<?php
defined('SYSPATH') or die('No direct script access.');
define('INSTALL_DATA', MODPATH . 'installer' . DIRECTORY_SEPARATOR . 'install' . DIRECTORY_SEPARATOR);
if (array_key_exists(Arr::get($_GET, 'lang'), I18n::available_langs())) {
I18n::lang(Arr::get($_GET, 'lang'));
} else {
I18n::lang(I18n::detect_lang());
}
try {
date_default_timezone_get();
} catch (Exception $e) {
date_default_timezone_set('UTC');
}
Database::$default = 'install';
Route::set('install', 'install(/<action>(/<id>))')->defaults(array('controller' => 'install', 'action' => 'error'));
Assets_Package::add('install')->js(NULL, ADMIN_RESOURCES . 'js/install.js', 'global')->css(NULL, ADMIN_RESOURCES . 'css/install.css', 'global');
示例2: defined
<?php
defined('SYSPATH') or die('No direct access allowed.');
return array('default_locale' => I18n::detect_lang(), 'date_formats' => array('Y-m-d', 'd.m.Y', 'Y/m/d', 'm/d/Y', 'd/m/Y', 'd M.', 'd M. Y', 'd F', 'd F Y', 'd F Y H:i', 'l, j-S F Y'), 'allowed_html_tags' => array('b' => array(), 'strong' => array(), 'i' => array(), 'em' => array(), 'ol' => array('class' => 1), 'ul' => array('class' => 1), 'li' => array(), 'p' => array('align' => 1, 'class' => 1), 'br' => array(), 'hr' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'a' => array('href' => 1, 'class' => 1), 'blockquote' => array('class' => 1), 'img' => array('src' => 1, 'class' => 1, 'style' => 1), 'iframe' => array('width' => 1, 'height' => 1, 'src' => 1, 'allowfullscreen' => 1)), 'themes' => array('default', 'asphalt', 'purple-hills', 'adminflare', 'dust', 'frost', 'fresh', 'silver', 'clean', 'white'), 'default_theme' => 'default');