Home > php教程 > php手册 > php网站地图生成类示例

php网站地图生成类示例

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 09:45:22
Original
873 people have browsed it

复制代码 代码如下:


// include class
include 'SitemapGenerator.php';

// create object
$sitemap = new SitemapGenerator("http://www.jb51.net");

// add urls
$sitemap->addUrl("http://your.jb51.net", date('c'), 'daily', '1');
$sitemap->addUrl("http://your.jb51.net", date('c'), 'daily', '0.5');
$sitemap->addUrl("http://your.jb51.net", date('c'), 'daily');

// create sitemap
$sitemap->createSitemap();

// write sitemap as file
$sitemap->writeSitemap();

// update robots.txt file
$sitemap->updateRobots();

// submit sitemaps to search engines
$sitemap->submitSitemap();

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template