米扑科技的开源项目:sitemap-php 自动生成网站地图
2021-06-20 09:02
标签:log 源代码 rate false 根目录 头部 text back time 米扑科技旗下的产品,近期正在做SEO网站优化,其中子需求之一是调研实现了网站地图(sitemap.xml) 封装简化了许多功能模块,现在分享出来,源代码可在Github上下载,有简单的示例。
Github 开源网址: sitemap-php
sitemap-php 是一个轻量级、简单快速生成网站地图的开源项目,由北京米扑科技有限公司(mimvp.com)开发分享。
通过简单的配置定义,一个函数createSitemap(),可自动生成sitemap.xml、sitemap.html等网站地图文件,
自动生成的xml、html文件,支持Google、Bing、Baidu等主流搜索引擎收录。
Fast and lightweight class for generating Google sitemap XML files and index of sitemap files.
Written on PHP and uses XMLWriter extension (wrapper for libxml xmlWriter API) for creating XML files. XMLWriter extension is enabled by default in PHP 5 >= 5.1.2.
If you having more than 50000 url, it splits items to seperated files. (In benchmarks, 1.000.000 url was generating in 8 seconds)
Sitemap 封装了生成sitemap.xml的属性和方法的类,使用非常简单,示例代码:
或者 也可以修改初始化的域名为 如果设置为true,则sitemap.xml文件头部会增加一些头部信息: 生成示例: 生成示例: You need to submit sitemap.xml and sitemap.html to Google、 Bing、 Baidu,etc. sitemap-php项目,目前支持指定网页、排除网页、扫描根目录等网站地图;
米扑科技的开源项目:sitemap-php 自动生成网站地图 标签:log 源代码 rate false 根目录 头部 text back time 原文地址:http://www.cnblogs.com/mimvp/p/7190438.html
What is sitemap-php ?
示例:
sitemap.xml : http://mimvp.com/sitemap.xml
sitemap.html : http://mimvp.com/sitemap.html
How to use
function testSitemap() {
$sitemap = new Sitemap("http://mimvp.com");
$sitemap->addItem(‘/‘, ‘1.0‘, ‘daily‘, ‘Today‘);
$sitemap->addItem(‘/hr.php‘, ‘0.8‘, ‘monthly‘, time());
$sitemap->addItem(‘/index.php‘, ‘1.0‘, ‘daily‘, ‘Jun 25‘);
$sitemap->addItem(‘/about.php‘, ‘0.8‘, ‘monthly‘, ‘2017-06-26‘);
$sitemap->addItem(‘/hr2.php‘, ‘1.0‘, ‘daily‘, time())->addItem(‘/index2.php‘, ‘1.0‘, ‘daily‘, ‘Today‘)->addItem(‘/about2.php‘, ‘0.8‘, ‘monthly‘, ‘Jun 25‘);
$sitemap->endSitemap();
}
$sitemap = new Sitemap("http://mimvp.com");
$sitemap->addItem(‘/‘, ‘1.0‘, ‘daily‘, ‘Today‘);
$sitemap->addItem(‘/hr.php‘, ‘0.8‘, ‘monthly‘, time());
$sitemap->addItem(‘/index.php‘, ‘1.0‘, ‘daily‘, ‘Jun 25‘);
$sitemap->addItem(‘/about.php‘, ‘0.8‘, ‘monthly‘, ‘2017-06-26‘);
$sitemap->addItem(‘/hr2.php‘, ‘1.0‘, ‘daily‘, time())->addItem(‘/index2.php‘, ‘1.0‘, ‘daily‘, ‘Today‘)->addItem(‘/about2.php‘, ‘0.8‘, ‘monthly‘, ‘Jun 25‘);
$sitemap->endSitemap();
xml version="1.0" encoding="UTF-8"?>
urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
url>
loc>http://mimvp.com/loc>
priority>1.0priority>
changefreq>dailychangefreq>
lastmod>2017-06-26T00:00:00+08:00lastmod>
url>
url>
loc>http://mimvp.com/hr.phploc>
priority>0.8priority>
changefreq>monthlychangefreq>
lastmod>2017-06-26T20:16:23+08:00lastmod>
url>
url>
loc>http://mimvp.com/index.phploc>
priority>1.0priority>
changefreq>dailychangefreq>
lastmod>2017-06-25T00:00:00+08:00lastmod>
url>
url>
loc>http://mimvp.com/about.phploc>
priority>0.8priority>
changefreq>monthlychangefreq>
lastmod>2017-06-26T00:00:00+08:00lastmod>
url>
urlset>
More Functions
$sitemap = new Sitemap("http://mimvp.com");
$sitemap->setDomain(‘http://blog.mimvp.com‘);
$sitemap->setXmlFile("xmls/sitemap");
$sitemap->setXmlFile("xmls/mimvp/sitemap");
$sitemap->setIsChemaMore(true);
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
$sitemap->getCurrXmlFileFullPath();
Advanced Functions
$GIncludeArray = array("", "/index.php", "about.php", "hr.php");
$GExcludeArray = array("usercenter/", "sadmin/", "admin/", "sitemap.php");
function scanRootPath($rootPath=".", $dirLevel=1, $MaxDirLevel=3, &$resArray=array())
function createXSL2Html($xmlFile, $xslFile, $htmlFile, $isopen_htmlfile=false)
Sitemap Demo
$GCONFIG = array( "domain"=>"http://mimvp.com",
"xmlfile"=>"sitemap",
"htmlfile"=>"sitemap.html",
"xslfile"=>"sitemap-xml.xsl",
"isopen_xmlfile"=>true,
"isopen_htmlfile"=>true,
"isscanrootpath"=>true,
"isxsl2html"=>true,
"isschemamore"=>true);
createSitemap();
createXSL2Html($xmlFile, $xslFile, $htmlFile, $isopen_htmlfile=false);
后期完善时,会增加导出数据库、爬取整个网站等功能,
也希望您的加入,继续完善此项目
sitemap-php All Rights by mimvp.com
上一篇:phpcms相关
下一篇:辛星浅析一次ajax的实现过程
文章标题:米扑科技的开源项目:sitemap-php 自动生成网站地图
文章链接:http://soscw.com/index.php/essay/96348.html