From: Antonio Ospite Date: Sat, 27 Jul 2013 14:38:46 +0000 (+0200) Subject: Add another date conversion routine X-Git-Tag: v0.1~23 X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/b4ad2d56c4a052414da10ad0bb6772008d50ee99 Add another date conversion routine --- diff --git a/tweeper.php b/tweeper.php index 07f5629..a019684 100755 --- a/tweeper.php +++ b/tweeper.php @@ -20,6 +20,12 @@ date_default_timezone_set('UTC'); +function str_to_gmdate($date) +{ + $timestamp = strtotime($date); + return epoch_to_gmdate($timestamp); +} + function epoch_to_gmdate($timestamp) { return gmdate('D, d M Y H:i:s', $timestamp) . ' GMT';