当前位置: 首页>>代码示例>>PHP>>正文


PHP Locales::getDefault方法代码示例

本文整理汇总了PHP中Locales::getDefault方法的典型用法代码示例。如果您正苦于以下问题:PHP Locales::getDefault方法的具体用法?PHP Locales::getDefault怎么用?PHP Locales::getDefault使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Locales的用法示例。


在下文中一共展示了Locales::getDefault方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getDefaultLocales

 /**
  * Returns the default localization.
  *
  * @api
  * @author David Pauli <contact@david-pauli.de>
  * @since 0.0.0
  * @return String|null Default localization or null if the REST call does fail.
  */
 public function getDefaultLocales()
 {
     return Locales::getDefault();
 }
开发者ID:Quaese,项目名称:ep6client-php,代码行数:12,代码来源:Shop.class.php

示例2: getDefaultLocale

 /**
  * Returns the default localization.
  *
  * @author David Pauli <contact@david-pauli.de>
  * @return String|null Default localization or null if the REST call does fail.
  * @since 0.0.0
  * @since 0.1.2 Add error reporting.
  */
 public function getDefaultLocale()
 {
     self::errorReset();
     return Locales::getDefault();
 }
开发者ID:dpauli,项目名称:epages-rest-php,代码行数:13,代码来源:Shop.class.php

示例3: getDefaultEmail

 /**
  * Gets the email in the default localization.
  *
  * @author David Pauli <contact@david-pauli.de>
  * @since 0.0.0
  * @since 0.1.0 Deprecated because the Locale is everytime the configured Locale.
  * @api
  * @deprecated
  * @return String|null The email in the default localization or null if the default email address is unset.
  */
 public function getDefaultEmail()
 {
     return self::getEmail(Locales::getDefault());
 }
开发者ID:dataduke,项目名称:epages-rest-php,代码行数:14,代码来源:ContactInformation.class.php

示例4: getDefaultEmail

 /**
  * Gets the email in the default localization.
  *
  * @author David Pauli <contact@david-pauli.de>
  * @since 0.0.0
  * @since 0.1.0 Deprecated because the Locale is everytime the configured Locale.
  * @since 0.1.1 Unstatic every attributes.
  * @api
  * @deprecated
  * @return String|null The email in the default localization or null if the default email address is unset.
  */
 public function getDefaultEmail()
 {
     return $this->getEmail(Locales::getDefault());
 }
开发者ID:Quaese,项目名称:ep6client-php,代码行数:15,代码来源:ContactInformation.class.php


注:本文中的Locales::getDefault方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。