本文整理匯總了PHP中Jenssegers\Date\Date::instance方法的典型用法代碼示例。如果您正苦於以下問題:PHP Date::instance方法的具體用法?PHP Date::instance怎麽用?PHP Date::instance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Jenssegers\Date\Date
的用法示例。
在下文中一共展示了Date::instance方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: convertToPHPValue
public function convertToPHPValue($value, AbstractPlatform $platform)
{
$result = parent::convertToPHPValue($value, $platform);
if ($result instanceof \DateTime) {
return Date::instance($result);
}
return $result;
}
示例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: 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);
}
示例4: 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);
}