$url = "https://glasgow.social/@neil.rss"; $basename = basename($url); $cache_file = "cache/$basename"; if(!file_exists($cache_file)) { $data = file_get_contents($url); file_put_contents($cache_file, $data); } else { $cache_ts = filemtime($cache_file); if($cache_ts >= strtotime("-5 minutes")) { $data = file_get_contents($cache_file); } else { $data = file_get_contents($url); file_put_contents($cache_file, $data); } } $posts = new SimpleXmlElement($data); echo "";