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


PHP I18n::insertArgs方法代碼示例

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


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

示例1: __xc

 /**
  * The category argument allows a specific category of the locale settings to be used for fetching a message.
  * Valid categories are: LC_CTYPE, LC_NUMERIC, LC_TIME, LC_COLLATE, LC_MONETARY, LC_MESSAGES and LC_ALL.
  *
  * Note that the category must be specified with a class constant of I18n, instead of the constant name. The values are:
  *
  * - LC_ALL       I18n::LC_ALL
  * - LC_COLLATE   I18n::LC_COLLATE
  * - LC_CTYPE     I18n::LC_CTYPE
  * - LC_MONETARY  I18n::LC_MONETARY
  * - LC_NUMERIC   I18n::LC_NUMERIC
  * - LC_TIME      I18n::LC_TIME
  * - LC_MESSAGES  I18n::LC_MESSAGES
  *
  * @param string $context  Context of the text
  * @param string $msg      String to translate
  * @param int    $category Category
  * @param mixed  $args     Array with arguments or multiple arguments in function, otherwise null.
  *
  * @return string translated string
  * @link http://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html#__c
  */
 function __xc($context, $msg, $category, $args = NULL)
 {
     if (!$msg) {
         return NULL;
     }
     App::uses('I18n', 'I18n');
     $translated = I18n::translate($msg, NULL, NULL, $category, NULL, NULL, $context);
     $arguments = func_get_args();
     return I18n::insertArgs($translated, array_slice($arguments, 3));
 }
開發者ID:mrbadao,項目名稱:api-official,代碼行數:32,代碼來源:basics.php


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