Advertisement
Guest User

Untitled

a guest
Oct 10th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2. $cachetime=0; // 12 Hours
  3. $cachefile = 'cache/horoscope.txt';
  4. if(!file_exists($cachefile) || filemtime($cachefile) < time() - $cachetime) {
  5.    
  6.     $xml = simplexml_load_file("http://www.vytautus.com/hor_rss.xml");  
  7.     $i=1;
  8.     foreach ($xml->channel->item as $item) {
  9.        
  10.         $horoscope .= '<p>'.(string)$item->description.'</p>';
  11.         $i++;
  12.     }
  13.     file_put_contents($cachefile, $horoscope);
  14. }
  15. $horoscope = file_get_contents($cachefile);
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement