jjok / xml-sitemap

生成XML站点地图。

1.1.0 2014-03-17 14:55 UTC

This package is not auto-updated.

Last update: 2024-09-14 14:56:12 UTC


README

Build Status

生成XML站点地图。

$sitemap = new \jjok\XmlSitemap\Sitemap();
$sitemap->addUrl(new \jjok\XmlSitemap\Url('http://www.example.com/'));
$sitemap->addUrl(new \jjok\XmlSitemap\Url('http://www.example.com/some-page', 0.6, '2013-06-28', 'hourly'));

header('Content-type: application/xml; charset=utf-8');
echo $sitemap->toString();

运行测试

phpunit

版权所有 (c) 2013 Jonathan Jefferies