Advertisement
zero50x

Генерация и скачивание sitemap

May 31st, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. $content = "<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">
  2. <url>
  3. <loc>http://site.com/page/123456.html</loc>
  4. </url>
  5. </urlset>";
  6. $filename = 'myxmlfile.xml';
  7.  
  8. header('Content-type: application/mspowerpoint');
  9. header('Content-Transfer-Encoding: binary');
  10. header('Expires: 0');
  11. header('Cache-Control: must-revalidate');
  12. header('Pragma: public');
  13. header('Content-Disposition: attachment; filename="' . $filename . '"');
  14. header('Content-Length: ' . strlen($content));
  15. echo $content;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement