<?php header("Content-Type: application/xml; charset=utf-8"); $b="https://petportrait.com.cn/"; $u=[["l"=>$b,"p"=>"1.0","c"=>"daily"],["l"=>$b."products/oil-painting.html","p"=>"0.8","c"=>"weekly"],["l"=>$b."products/3d-sculpture.html","p"=>"0.8","c"=>"weekly"],["l"=>$b."products/jewelry.html","p"=>"0.8","c"=>"weekly"],["l"=>$b."products/leather-art.html","p"=>"0.8","c"=>"weekly"],["l"=>$b."products/memorial.html","p"=>"0.8","c"=>"weekly"],["l"=>$b."products/service-package.html","p"=>"0.8","c"=>"weekly"],["l"=>$b."contact.html","p"=>"0.6","c"=>"monthly"]]; echo '<?xml version="1.0" encoding="UTF-8"?>\n'; echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n'; foreach($u as $x){echo "  <url>\n    <loc>".htmlspecialchars($x["l"])."</loc>\n    <lastmod>".date("Y-m-d")."</lastmod>\n    <changefreq>".$x["c"]."</changefreq>\n    <priority>".$x["p"]."</priority>\n  </url>\n";} echo "</urlset>"; ?>
