本文整理汇总了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);
}
示例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);
}
示例3: testUnix
public function testUnix() {
$dates = [
'1446552000',
];
$needle = '3 ноября 2015';
foreach ($dates as $date) {
$this->assertEquals($needle, Date::createFromTimestamp($date)->format('j F Y'));
}
}
示例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]);
}
示例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);
}
示例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);
}
示例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;
}
示例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'))];
}