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


PHP Date::createFromTimestamp方法代碼示例

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


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

示例1: testConvert

 /**
  * @covers ::convert
  */
 public function testConvert()
 {
     $test1 = Converter::convert(Calends::create(0, 'unix'));
     $this->assertEquals(['start' => Date::createFromTimestamp(0), 'duration' => \Carbon\CarbonInterval::seconds(0), 'end' => Date::createFromTimestamp(0)], $test1);
     $test2 = Converter::convert(Calends::create(['start' => 0, 'end' => 86400], 'unix'));
     $this->assertEquals(['start' => Date::createFromTimestamp(0), 'duration' => \Carbon\CarbonInterval::seconds(86400), 'end' => Date::createFromTimestamp(86400)], $test2);
 }
開發者ID:danhunsaker,項目名稱:calends,代碼行數:10,代碼來源:DateTest.php

示例2: asDateTime

 protected function asDateTime($value)
 {
     if (is_numeric($value)) {
         return Date::createFromTimestamp($value);
     } elseif (preg_match('/^(\\d{4})-(\\d{2})-(\\d{2})$/', $value)) {
         return Date::createFromFormat('Y-m-d', $value)->startOfDay();
     } elseif (!$value instanceof DateTime) {
         $format = $this->getDateFormat();
         return Date::createFromFormat($format, $value);
     }
     return Date::instance($value);
 }
開發者ID:ankhzet,項目名稱:Ankh,代碼行數:12,代碼來源:DateAccessorTrait.php

示例3: testUnix

	public function testUnix() {
		$dates = [
			'1446552000',
		];

		$needle = '3 ноября 2015';

		foreach ($dates as $date) {
			$this->assertEquals($needle, Date::createFromTimestamp($date)->format('j F Y'));
		}


	}
開發者ID:petun,項目名稱:ipad-slider,代碼行數:13,代碼來源:DateHelperTest.php

示例4: renderHtml

 public function renderHtml()
 {
     $media = $this->_currentUser->getFeed();
     $data = [];
     foreach ($media as $photo) {
         /** @var \Instagram\Media $photo */
         $data[] = ['image' => $photo->getLowResImage()->url, 'user' => $photo->getUser()->getUserName(), 'location' => $photo->getLocation() ? $photo->getLocation()->getName() : '', 'date' => Date::createFromTimestamp($photo->getCreatedTime())->ago(), 'caption' => $photo->getCaption() ? StrHelper::removeEmoji($photo->getCaption()->getText()) : ''];
     }
     if ($this->limit) {
         $data = array_chunk($data, $this->limit)[0];
     }
     $template = $this->style ? 'instagram_' . $this->style : 'instagram';
     return Application::getInstance()->jadeEngine()->render(__DIR__ . '/../../frontend/src/jade/resource/' . $template . '.jade', ['data' => $data]);
 }
開發者ID:petun,項目名稱:ipad-slider,代碼行數:14,代碼來源:InstagramResourceHandler.php

示例5: asDateTime

 /**
  * Return a timestamp as DateTime object.
  *
  * @param  mixed  $value
  * @return \Jenssegers\Date\Date
  */
 protected function asDateTime($value)
 {
     // If this value is an integer, we will assume it is a UNIX timestamp's value
     // and format a Carbon object from this timestamp. This allows flexibility
     // when defining your date fields as they might be UNIX timestamps here.
     if (is_numeric($value)) {
         return Date::createFromTimestamp($value);
     } elseif (preg_match('/^(\\d{4})-(\\d{2})-(\\d{2})$/', $value)) {
         return Date::createFromFormat('Y-m-d', $value)->startOfDay();
     } elseif (!$value instanceof DateTime) {
         $format = $this->getDateFormat();
         return Date::createFromFormat($format, $value);
     }
     return Date::instance($value);
 }
開發者ID:qwildz,項目名稱:localized-eloquent-date,代碼行數:21,代碼來源:LocalizedDateTrait.php

示例6: asDateTime

 /**
  * Return a timestamp as DateTime object.
  *
  * @param  mixed  $value
  * @return \Carbon\Carbon
  */
 protected function asDateTime($value)
 {
     Date::setLocale('it');
     // If the value is already a DateTime instance, we will just skip the rest of
     // these checks since they will be a waste of time, and hinder performance
     // when checking the field. We will just return the DateTime right away.
     if ($value instanceof DateTime) {
         //
     } elseif (is_numeric($value)) {
         return Date::createFromTimestamp($value);
     } elseif (preg_match('/^(\\d{4})-(\\d{2})-(\\d{2})$/', $value)) {
         return Date::createFromFormat('Y-m-d', $value)->startOfDay();
     } elseif (!$value instanceof DateTime) {
         $format = $this->getDateFormat();
         return Date::createFromFormat($format, $value);
     }
     return Date::instance($value);
 }
開發者ID:AssociazionePrometeo,項目名稱:doorkeeper-web,代碼行數:24,代碼來源:LocalizesDates.php

示例7: handleTypeConversions

 /**
  * Handle various type conversions that should be supported natively by Doctrine (like DateTime)
  *
  * @param  mixed $value
  * @param  string $typeOfField
  * @return Date
  */
 protected function handleTypeConversions($value, $typeOfField)
 {
     switch ($typeOfField) {
         case 'datetimetz':
         case 'datetime':
         case 'time':
         case 'date':
             if ('' === $value) {
                 return null;
             }
             if (is_int($value)) {
                 $value = Date::createFromTimestamp($value);
             } elseif (is_string($value)) {
                 $value = Date::createFromFormat('d/M/Y', $value);
             }
             break;
         default:
     }
     return $value;
 }
開發者ID:zetta-code,項目名稱:tss-doctrineutil,代碼行數:27,代碼來源:DoctrineObject.php

示例8: convert

 /**
  * {@inheritdoc}
  */
 public static function convert(Calends $cal)
 {
     return ['start' => Source::createFromTimestamp($cal->getDate('unix')), 'duration' => CarbonInterval::seconds($cal->getDuration(0)), 'end' => Source::createFromTimestamp($cal->getEndDate('unix'))];
 }
開發者ID:danhunsaker,項目名稱:calends,代碼行數:7,代碼來源:Date.php


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