diff options
author | Mario Vavti <mario@mariovavti.com> | 2024-12-07 23:49:17 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2024-12-07 23:49:17 +0100 |
commit | bb0a22ee582c7268431ccb6e44ffc6378ca00093 (patch) | |
tree | 575b4526fe33abe5e2c0a5e7644df08dd7e2a4ea /include | |
parent | e88ae54bef268e455b6d6028a697e9dbd98a7853 (diff) | |
download | volse-hubzilla-bb0a22ee582c7268431ccb6e44ffc6378ca00093.tar.gz volse-hubzilla-bb0a22ee582c7268431ccb6e44ffc6378ca00093.tar.bz2 volse-hubzilla-bb0a22ee582c7268431ccb6e44ffc6378ca00093.zip |
add test for relative_time()
Diffstat (limited to 'include')
-rw-r--r-- | include/datetime.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/datetime.php b/include/datetime.php index e23a11741..89e2876d0 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -268,12 +268,15 @@ function relative_date($posted_date, $format = null) { return $abs; } - -function relative_time($timestamp) { - $timestamp = datetime_convert('UTC', date_default_timezone_get(), $timestamp); - - $now = new DateTime(); - $time = new DateTime($timestamp); +/** + * @brief Returns a relative time string like 3 seconds ago. + * @param string $posted_date (UTC) + * @param DateTime $now (optional) + * @return string with relative time + */ +function relative_time($timestamp, $now = new DateTime()) { + $localtime = datetime_convert('UTC', date_default_timezone_get(), $timestamp); + $time = new DateTime($localtime); $interval = $now->diff($time); |