-function epoch_to_gmdate($timestamp)
-{
- return gmdate('D, d M Y H:i:s', $timestamp) . ' GMT';
-}
-
-function get_url_info($url)
-{
- $ch = curl_init($url);
- curl_setopt_array($ch, array(
- CURLOPT_HEADER => TRUE,
- CURLOPT_NOBODY => TRUE,
- CURLOPT_FOLLOWLOCATION => TRUE, // follow http redirects to get the real URL
- CURLOPT_RETURNTRANSFER => TRUE,
- CURLOPT_SSL_VERIFYHOST => FALSE,
- CURLOPT_SSL_VERIFYPEER => FALSE,
- CURLOPT_USERAGENT => USER_AGENT,
- ));
- curl_exec($ch);
- $url_info = curl_getinfo($ch);;
- curl_close($ch);
+ public function __construct($stylesheet, $generate_enclosure = FALSE) {
+ $stylesheet_contents = $this->get_contents($stylesheet);