xlient/xml-sitemap

一个XML站点地图迭代器,允许您遍历站点地图中的所有URL。

v1.0.1 2023-05-29 19:54 UTC

This package is auto-updated.

Last update: 2024-09-29 23:03:41 UTC


README

一个使用XmlReader编写的PHP XML站点地图迭代器,允许您遍历站点地图中的所有URL。支持站点地图索引和URL集。

示例

$sitemapIterator = new \Xlient\Xml\Sitemap\SitemapIterator();
$sitemapIterator->open(
    __DIR__ . '/sitemap.xml',
    [
        // Skip over urls that have not been modified since this date.
        'modified_date_time' => null, // DateTime|string
        // Skip over urls that have a priority lower than this value.
        'minimum_priority' => null, // float
        // Specify the encoding of the sitemap.
        'encoding' => null, // String
    ]
);

foreach ($sitemapIterator as $url => $data) {
    ...
}

$sitemapIterator->close();