本文整理汇总了PHP中Localization::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Localization::init方法的具体用法?PHP Localization::init怎么用?PHP Localization::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Localization
的用法示例。
在下文中一共展示了Localization::init方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Zend_Translate
if (LOCALE != 'en_US') {
if (is_dir(DIR_BASE . '/languages/' . LOCALE)) {
$translate = new Zend_Translate('gettext', DIR_BASE . '/languages/' . LOCALE, LOCALE);
}
}
if (!isset($translate)) {
$translate = false;
}
}
return $translate;
}
}
}
Localization::init();
function t($text) {
$zt = Localization::getTranslate();
if (func_num_args() == 1) {
if (is_object($zt)) {
return $zt->_($text);
} else {
return $text;
}
}
$arg = array();
for($i = 1 ; $i < func_num_args(); $i++) {
$arg[] = func_get_arg($i);
}
示例2: Localization
<?php
/*
* Define APPLICATION_ROOT constant here.
*
* The constant is used in include's and require's
* across the code of the library.
*
*/
define('APPLICATION_ROOT', $_SERVER['DOCUMENT_ROOT']);
/*
* Make $supported_locales available.
*
* Edit this array to add/remove locales.
*
*/
require_once APPLICATION_ROOT . "/config/supported_locales.config.php";
require_once APPLICATION_ROOT . "/lib/Localization.class.php";
$localization = new Localization($supported_locales);
$locale = $localization->init();