Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. $string = simplexml_load_file('http://img.ignio.com/r/export/utf/xml/weekly/cur.xml');
  2.  
  3. $zodiac = [
  4. 'aries' => 'Овен',
  5. 'taurus' => 'Телец',
  6. 'gemini' => 'Близнецы',
  7. 'cancer' => 'Рак',
  8. 'leo' => 'Лев',
  9. 'virgo' => 'Дева',
  10. 'libra' => 'Весы',
  11. 'scorpio' => 'Скорпион',
  12. 'sagittarius' => 'Стрелец',
  13. 'capricorn' => 'Козерог',
  14. 'aquarius' => 'Водолей',
  15. 'pisces' => 'Рыбы',
  16. ];
  17.  
  18. $result = '';
  19.  
  20. foreach($string as $key => $value) {
  21. if (!empty($value->business) and !empty($zodiac[$key])) {
  22. $result .= $zodiac[$key] . "\n" . $value->business . "\n";
  23. }
  24. }
  25. $result .= 'По материалам сайта www.ignio.com';
  26. $file_path = '/Users/Uncater/Desktop/stars.txt';
  27. if (file_exists($file_path)) {
  28. file_put_contents($file_path, $result);
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement