mirror of
https://github.com/smarty-php/smarty.git
synced 2025-07-31 08:27:14 +02:00
- update DateTime object can be instance of DateTimeImmutable since PHP5.5 https://github.com/smarty-php/smarty/pull/75
This commit is contained in:
@ -1,4 +1,7 @@
|
|||||||
===== 3.1.28-dev===== (xx.xx.2015)
|
===== 3.1.28-dev===== (xx.xx.2015)
|
||||||
|
01.08.2015
|
||||||
|
- update DateTime object can be instance of DateTimeImmutable since PHP5.5 https://github.com/smarty-php/smarty/pull/75
|
||||||
|
|
||||||
31.07.2015
|
31.07.2015
|
||||||
- optimize {foreach} and {section} compiler
|
- optimize {foreach} and {section} compiler
|
||||||
|
|
||||||
|
@ -21,8 +21,8 @@ function smarty_make_timestamp($string)
|
|||||||
if (empty($string)) {
|
if (empty($string)) {
|
||||||
// use "now":
|
// use "now":
|
||||||
return time();
|
return time();
|
||||||
} elseif ($string instanceof DateTime) {
|
} elseif ($string instanceof DateTime || (interface_exists('DateTimeInterface', false) && $string instanceof DateTimeInterface)) {
|
||||||
return $string->getTimestamp();
|
return (int) $string->format('U'); // PHP 5.2 BC
|
||||||
} elseif (strlen($string) == 14 && ctype_digit($string)) {
|
} elseif (strlen($string) == 14 && ctype_digit($string)) {
|
||||||
// it is mysql timestamp format of YYYYMMDDHHMMSS?
|
// it is mysql timestamp format of YYYYMMDDHHMMSS?
|
||||||
return mktime(substr($string, 8, 2), substr($string, 10, 2), substr($string, 12, 2),
|
return mktime(substr($string, 8, 2), substr($string, 10, 2), substr($string, 12, 2),
|
||||||
|
Reference in New Issue
Block a user