projects
/
tweeper.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2f1cdf
)
Add another date conversion routine
author
Antonio Ospite <ospite@studenti.unina.it>
Sat, 27 Jul 2013 14:38:46 +0000
(16:38 +0200)
committer
Antonio Ospite <ospite@studenti.unina.it>
Sat, 27 Jul 2013 15:06:18 +0000
(17:06 +0200)
tweeper.php
patch
|
blob
|
history
diff --git
a/tweeper.php
b/tweeper.php
index
07f5629
..
a019684
100755
(executable)
--- 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';