xml-mobile.php 428 B

123456789101112
  1. <?= '<'.'?'.'xml version="1.0" encoding="UTF-8"?>'."\n" ?>
  2. <?php if (null != $style) {
  3. echo '<'.'?'.'xml-stylesheet href="'.$style.'" type="text/xsl"?>'."\n";
  4. } ?>
  5. <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0">
  6. <?php foreach ($items as $item) : ?>
  7. <url>
  8. <loc><?= $item['loc'] ?></loc>
  9. <mobile:mobile/>
  10. </url>
  11. <?php endforeach; ?>
  12. </urlset>