Add another date conversion routine
authorAntonio Ospite <ospite@studenti.unina.it>
Sat, 27 Jul 2013 14:38:46 +0000 (16:38 +0200)
committerAntonio Ospite <ospite@studenti.unina.it>
Sat, 27 Jul 2013 15:06:18 +0000 (17:06 +0200)
tweeper.php

index 07f5629..a019684 100755 (executable)
 
 date_default_timezone_set('UTC');
 
 
 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';
 function epoch_to_gmdate($timestamp)
 {
   return gmdate('D, d M Y H:i:s', $timestamp) . ' GMT';