当前位置: 首页>>代码示例>>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;未经允许,请勿转载。