Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webchemistry/sitemap
https://github.com/webchemistry/sitemap
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/webchemistry/sitemap
- Owner: WebChemistry
- Created: 2019-04-12T12:46:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-02T13:18:54.000Z (4 months ago)
- Last Synced: 2024-11-05T00:52:25.655Z (about 2 months ago)
- Language: PHP
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Sitemap usage
```php
$sitemap = new Sitemap();$sitemap->add(
new SitemapItem('http://example.com', new DateTime(), ChangeFrequency::ALWAYS(), 90)
);echo $sitemap->toString()
```#### Google news
```php
$sitemap = new Sitemap();$sitemap->add(new GoogleNewsItem(
new SitemapItem('http://example.com'),
'Example', 'en', 'Subject', new DateTime()
));echo $sitemap->toString();
```