-function get_url_info($url)
-{
- $ch = curl_init($url);
- curl_setopt_array($ch, array(
- CURLOPT_HEADER => TRUE, // get the header
- CURLOPT_NOBODY => TRUE, // don't donwload body
- CURLOPT_FOLLOWLOCATION => TRUE, // the magic sauce
+ public function __construct($generate_enclosure = FALSE) {
+ $this->generate_enclosure = $generate_enclosure;
+ }
+
+ public static function epoch_to_gmdate($timestamp)
+ {
+ return gmdate('D, d M Y H:i:s', $timestamp) . ' GMT';
+ }
+
+ public static function str_to_gmdate($date)
+ {
+ $timestamp = strtotime($date);
+ return Tweeper::epoch_to_gmdate($timestamp);
+ }
+
+ private static function get_contents($url)
+ {
+ $ch = curl_init($url);
+ curl_setopt_array($ch, array(
+ CURLOPT_HEADER => FALSE,
+ CURLOPT_FOLLOWLOCATION => TRUE, // follow http redirects to get the real URL