Skip to content

Instantly share code, notes, and snippets.

<?php
// URL of the sitemap
$sitemapUrl = "https://www.example.com/sitemap.xml";
// Load the sitemap XML into a SimpleXML object
$sitemapXml = simplexml_load_file($sitemapUrl);
// Iterate over each URL in the sitemap
foreach ($sitemapXml->url as $url) {