當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Locale::getLanguage方法代碼示例

本文整理匯總了PHP中Locale::getLanguage方法的典型用法代碼示例。如果您正苦於以下問題:PHP Locale::getLanguage方法的具體用法?PHP Locale::getLanguage怎麽用?PHP Locale::getLanguage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Locale的用法示例。


在下文中一共展示了Locale::getLanguage方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getCurrentLocale

 /**
  * Returns the current locale. This is the default locale if
  * no current lcoale has been set or the set current locale has
  * a language code of "mul".
  *
  * @return \TYPO3\FLOW3\I18n\Locale
  */
 public function getCurrentLocale()
 {
     if (!$this->currentLocale instanceof \TYPO3\FLOW3\I18n\Locale || $this->currentLocale->getLanguage() === 'mul') {
         return $this->defaultLocale;
     }
     return $this->currentLocale;
 }
開發者ID:nxpthx,項目名稱:FLOW3,代碼行數:14,代碼來源:Configuration.php

示例2: testGetLanguage

 /**
  * Tests Locale->getLanguage()
  */
 public function testGetLanguage()
 {
     $this->assertEquals('EN', $this->Locale->getLanguage());
 }
開發者ID:ahmedadham88,項目名稱:enhanced-social-network,代碼行數:7,代碼來源:LocaleTest.php

示例3: header

if ($basename == 'index.php') {
    header('Content-type: text/html; charset=UFT-8', true);
}
// Show errors
error_reporting(E_ALL);
// Includes path
set_include_path('app/' . PATH_SEPARATOR . 'admin/app/' . PATH_SEPARATOR . 'admin/app/ado/' . PATH_SEPARATOR . 'admin/app/control/' . PATH_SEPARATOR . 'admin/app/model/' . PATH_SEPARATOR . 'admin/app/inc/' . PATH_SEPARATOR . 'admin/app/config/' . PATH_SEPARATOR . get_include_path());
// Autload classes
function __autoload($file)
{
    $paths = array('app/', 'admin/app/', 'admin/app/ado/', 'admin/app/control/', 'admin/app/model/', 'admin/app/inc/', 'admin/app/config/');
    foreach ($paths as $path) {
        if (is_file($path . $file . '.class.php')) {
            require $path . $file . '.class.php';
            break;
        }
    }
}
// Debug
function pr($array)
{
    echo '<div style="border:2px solid #000;padding:10px;background:#e1e1e1;margin:10px;">';
    echo '<pre>';
    print_r($array);
    echo '</pre>';
    echo '</div>';
}
// Language
$language = Locale::getLanguage();
// Configuration
require_once 'config.php';
開發者ID:kirygithub,項目名稱:chatNow,代碼行數:31,代碼來源:autoload.php


注:本文中的Locale::getLanguage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。