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


PHP DateTime::getTimestamp方法代碼示例

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


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

示例1: save

 /**
  * Save past text into database
  * Return generated hash
  * @param array $data
  * @return string
  */
 public function save($data)
 {
     $data->hash = Random::generate(6, '0-9a-zA-Z');
     $data->inserted = $this->dateTime->getTimestamp();
     $data->id_user = '';
     $this->dtb->table('pastes')->insert($data);
     return $data->hash;
 }
開發者ID:hadikcz,項目名稱:PasteIt,代碼行數:14,代碼來源:PasteManager.php

示例2: checkForTokenExpiration

 /**
  * @param  Entities\UserEntity             $e
  * @param  string                          $token
  * @throws UserNotFoundException
  * @throws ActivationLimitExpiredException
  */
 public function checkForTokenExpiration(Entities\UserEntity $e, $token)
 {
     if ($e->token !== $token) {
         throw new UserNotFoundException($this->translator->translate('locale.sign.incorrect_token'));
     }
     $current = new DateTime();
     $created = $e->tokenCreatedAt;
     $currentTimestamp = $current->getTimestamp();
     $createdTimestamp = $created->getTimestamp();
     $diff = $currentTimestamp - $createdTimestamp;
     if ($diff >= Authenticator::ACTIVATION_LIMIT_TIMESTAMP) {
         throw new ActivationLimitExpiredException($this->translator->translate('locale.sign.authentication_expired'));
     }
 }
開發者ID:CSHH,項目名稱:website,代碼行數:20,代碼來源:UserRepository.php

示例3: getDateValue

 /**
  * Get Date from ::addDate() field
  *
  * @param Nette\Forms\Controls\TextInput|string $input
  *
  * @return string
  */
 public static function getDateValue($input)
 {
     if ($input instanceof Nette\Forms\Controls\TextInput) {
         $value = $input->getValue();
     } else {
         $value = $input;
     }
     if (preg_match('~^\\d{1,2}[/.]{1}[ ]{0,1}\\d{1,2}[/.]{1}[ ]{0,1}\\d{4}$~', $value, $arr)) {
         $dateArr = preg_split('/[.\\/]{1}[ ]{0,1}/s', $arr[0]);
         $date = new Nette\Utils\DateTime($dateArr[2] . '-' . $dateArr[1] . '-' . $dateArr[0]);
         return $date->getTimestamp() < 10 ? NULL : $date->format('Y-m-d');
     }
     return empty($value) || $value == '0000-00-00' ? NULL : $value;
 }
開發者ID:trejjam,項目名稱:utils,代碼行數:21,代碼來源:DateTimeFields.php


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