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


PHP StringUtils::normalizeUsername方法代碼示例

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


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

示例1: completeUser

 /**
  * complete the user with the api json
  *
  * @param User $pUser
  * @param Object $pObject
  */
 public function completeUser(&$pUser, $lProfileArray)
 {
     $pUser->setUsername(UserUtils::getUniqueUsername(StringUtils::normalizeUsername($lProfileArray['first-name'] . $lProfileArray['last-name'])));
     if (isset($lProfileArray['summary'])) {
         $pUser->setDescription(strip_tags($lProfileArray['summary']));
     }
     $pUser->setActive(true);
     $pUser->setAgb(true);
     $pUser->setFirstname($lProfileArray['first-name']);
     $pUser->setLastname($lProfileArray['last-name']);
     if (isset($lProfileArray['location']['country']['code'])) {
         $pUser->setCulture($lProfileArray['location']['country']['code']);
     }
     $pUser->save();
 }
開發者ID:42medien,項目名稱:spreadly,代碼行數:21,代碼來源:LinkedinAuthApiClient.php

示例2: completeUser

 /**
  * complete the user with the api json
  *
  * @author Matthias Pfefferle
  * @param User $pUser
  * @param Object $pObject
  */
 public function completeUser(&$pUser, $pObject)
 {
     $pUser->setUsername(UserUtils::getUniqueUsername(StringUtils::normalizeUsername($pObject->username)));
     $pUser->setActive(true);
     $pUser->setAgb(true);
     $pUser->setFirstname($pObject->firstname);
     $pUser->setEmail($pObject->email);
     $pUser->setLastname($pObject->lastname);
     $pUser->save();
 }
開發者ID:42medien,項目名稱:spreadly,代碼行數:17,代碼來源:FlattrAuthApiClient.php

示例3: completeUser

 /**
  * complete the user with the api json
  *
  * @param User $pUser
  * @param Object $pObject
  */
 public function completeUser(&$pUser, $pObject)
 {
     $pUser->setUsername(UserUtils::getUniqueUsername(StringUtils::normalizeUsername($pObject->nickname)));
     if (isset($pObject->note) && !$pUser->getDescription()) {
         $pUser->setDescription(strip_tags($pObject->note));
     }
     if (isset($pObject->birthday)) {
         $pUser->setBirthdate($pObject->birthday);
     }
     $pUser->setActive(true);
     $pUser->setAgb(true);
     $pUser->setCulture("de");
     $pUser->save();
 }
開發者ID:42medien,項目名稱:spreadly,代碼行數:20,代碼來源:YiggAuthApiClient.php

示例4: completeUser

 /**
  * complete the user with the api json
  *
  * @param User $pUser
  * @param Object $pObject
  */
 public function completeUser(&$pUser, $pObject)
 {
     $pUser->setUsername(UserUtils::getUniqueUsername(StringUtils::normalizeUsername($pObject["page_name"])));
     $pUser->setActive(true);
     $pUser->setAgb(true);
     $pUser->setFirstname($pObject['first_name']);
     $pUser->setFirstname($pObject['last_name']);
     $pUser->setEmail($pObject['active_email']);
     $pUser->save();
 }
開發者ID:42medien,項目名稱:spreadly,代碼行數:16,代碼來源:XingAuthApiClient.php

示例5: completeUser

 /**
  * complete the user with the api json
  *
  * @param User $pUser
  * @param Object $pObject
  */
 public function completeUser(&$pUser, $pObject)
 {
     $pUser->setUsername(UserUtils::getUniqueUsername(StringUtils::normalizeUsername($pObject->screen_name)));
     $pUser->setDescription(strip_tags($pObject->description));
     $pUser->setActive(true);
     $pUser->setAgb(true);
     // try to split full-name
     $lName = MicroformatsTools::splitFN($pObject->name);
     if (array_key_exists("firstname", $lName)) {
         $pUser->setFirstname($lName['firstname']);
     }
     if (array_key_exists("lastname", $lName)) {
         $pUser->setFirstname($lName['lastname']);
     }
     $pUser->setCulture(substr($pObject->lang, 0, 2));
     $pUser->save();
 }
開發者ID:42medien,項目名稱:spreadly,代碼行數:23,代碼來源:TwitterAuthApiClient.php


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