sitemap xml文件生成
sitemap xml生成方法
<?php
/**
* SitemapService.php.
*
* 生成sitemap
*/
class Sitemap
{
public $newLine = "\n";
public $indent = " ";
public $xmlHeader = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
public $urlsetOpen = "<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"
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\">\n";
public $urlsetValue = "";
public $urlsetClose = "</urlset>\n";
public $rootUrl = "";
public function __construct($rootUrl = "https://www.xxx")
{
if (empty($rootUrl)) {
$rootUrl = "https://www.xxx";
}
$this->rootUrl = $rootUrl;
}
private function makeUrlString ($urlString) {
return htmlentities($urlString, ENT_QUOTES|ENT_XML1, 'UTF-8');
}
/**
* 返回格式: 2019-02-01T12:40:05+00:00
* 参数格式: 2019-02-01 12:40:05
* @param $dateTime
* @return bool|string
*/
private function makeIso8601TimeStamp ($dateTime) {
if (!$dateTime) {
$dateTime = date('Y-m-d H:i:s');
}
if (is_numeric(substr($dateTime, 11, 1))) {
$isoTS = substr($dateTime, 0, 10) ."T"
.substr($dateTime, 11, 8) ."+00:00";
} else {
$isoTS = substr($dateTime, 0, 10);
}
return $isoTS;
}
private function makeUrlTag ($url, $modifiedDateTime, $changeFrequency, $priority) {
$newLine = $this->newLine;
$indent = $this->indent;
$urlOpen = "$indent<url>$newLine";
$urlClose = "$indent</url>$newLine";
$locOpen = "$indent$indent<loc>";
$locClose = "</loc>$newLine";
$lastmodOpen = "$indent$indent<lastmod>";
$lastmodClose = "</lastmod>$newLine";
$changefreqOpen = "$indent$indent<changefreq>";
$changefreqClose = "</changefreq>$newLine";
$priorityOpen = "$indent$indent<priority>";
$priorityClose = "</priority>$newLine";
$urlTag = $urlOpen;
$urlValue = $locOpen .$this->makeUrlString($url) .$locClose;
if ($modifiedDateTime) {
$urlValue .= $lastmodOpen .$this->makeIso8601TimeStamp($modifiedDateTime) .$lastmodClose;
}
if ($changeFrequency) {
$urlValue .= $changefreqOpen .$changeFrequency .$changefreqClose;
}
if ($priority) {
$urlValue .= $priorityOpen .$priority .$priorityClose;
}
$urlTag .= $urlValue;
$urlTag .= $urlClose;
return $urlTag;
}
/**
* 验证是否符合url格式
* url format: /xxx|lastmod|changefreq|priority
*
* @param $pageLine
* @return bool
*/
private function validateEntry ($pageLine) {
$page = explode("|", $pageLine);
$url = trim($page[0]);
$processLine = TRUE;
if (substr($url, 0, 1) != "/") {
$processLine = FALSE;
}
return $processLine;
}
/**
* 获取待生成的链接
* url format: /xxx|lastmod|changefreq|priority
*
* @return array
*/
private function getUrls()
{
$lastmod = date('Y-m-d H:i:s');
$changefreq = "daily";
$priority_index = "1.0";
$priority_category = "0.8";
$priority_details = "0.5";
$pageList = [];
$pageList[] = "/|$lastmod|$changefreq|$priority_index";
// 添加自己的网站url
$pageList[] = "/ranking|$lastmod|$changefreq|$priority_category";
return $pageList;
}
/**
* 生成sitemap文件
*/
public function generate()
{
$pageList = $this->getUrls();
foreach($pageList as $pageLine) {
$processLine = $this->validateEntry ($pageLine);
$page = explode("|", $pageLine);
$url = trim($page[0]);
if ($processLine) {
$this->urlsetValue .= $this->makeUrlTag ($this->rootUrl .$url, trim($page[1]), trim($page[2]), trim($page[3]));
}
}
return $this->xmlHeader . $this->urlsetOpen . $this->urlsetValue . $this->urlsetClose;
}
}
/**
* 1. Sitemap 构造方法,默认的rootUrl 修改为待整理的网站域名
* 2. Sitemap getUrls方法,添加自己网站的url
* 3. 调用Sitemap时,rootUrl的参数修改
*/
$rootUrl = "";
$sitemap = new Sitemap($rootUrl);
$xml_data = $sitemap->generate();
header('Content-type: application/xml; charset="utf-8"');
echo $xml_data;
参考链接
sitemap xml文件生成的更多相关文章
- XML文件生成C++代码(基于rapidxml)
简述 与XML文件生成C++代码(基于pugixml)中的功能一致,只是这里改用的rapidxml来实现.就不多说了,直接放代码. 代码 #include "rapidxml-1.13/ra ...
- XML文件生成C++代码(基于pugixml)
简述 在一个项目中需要用到XML的解析和生成,知乎上有人推荐rapidxml和pugixml等库.RapidXML一看库还比较大,就先研究一下pugixml了. 因为对解析XML的需求不大(都是一些很 ...
- 根据xml文件生成javaBean
原 根据xml文件生成javaBean 2017年08月15日 18:32:26 吃完喝完嚼益达 阅读数 1727 版权声明:本文为博主原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出 ...
- WebAPI使用多个xml文件生成帮助文档
一.前言 上篇有提到在WebAPI项目内,通过在Nuget里安装(Microsoft.AspNet.WebApi.HelpPage)可以根据注释生成帮助文档,查看代码实现会发现是基于解析项目生成的xm ...
- WebAPI使用多个xml文件生成帮助文档(转)
http://www.cnblogs.com/idoudou/p/xmldocumentation-for-web-api-include-documentation-from-beyond-the- ...
- 如何引用XML文件生成C#类
目录 XSD File Generate Class File Simply. 1 Why use XSD file to create C# classes?... 2 How to convert ...
- Android(java)学习笔记185:xml文件生成
1.xml文件: 用元素描述数据,跨平台. 2.利用传统的方式创建xml文件,下面是一个案例: 设计思路:建立一个学生管理系统,创建xml文件保存学生信息: (1)首先是布局文件activity_ma ...
- 根据XML文件生成XSD文件
在.net开发环境中查找XSD.exe文件,比如我的在C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin目录下,将该路径添加到Path中,打开控制台,到 ...
- eclips运行generatorConfig.xml文件生成代码
描述: 如何通过eclips工具来运行 generatorConfig.xml 文件来自动生成代码并获取数据(类似于mybaits逆向生成)? mybatis-generator:generate 2 ...
随机推荐
- php时间戳与日期转换
日期转换为时间戳 PHP 提供了函数可以方便的将各种形式的日期转换为时间戳,该类函数主要是: strtotime():将任何英文文本的日期时间描述解析为时间戳. mktime():从日期取得时间戳. ...
- 性能测试三十二:监控之Java线程监控
线程的五种状态 * 新建:new * 运行:runnable * 等待:waitting(无限期等待),timed waitting(限期等待) * 阻塞:blocked * 结束:terminate ...
- myEclipse配置java版本(环境、项目、编译)
从别的地方导入一个项目的时候,经常会遇到eclipse/Myeclipse报Description Resource Path Location Type Java compiler level d ...
- Springboot 2.0 - 集成redis
序 最近在入门SpringBoot,然后在感慨 SpringBoot较于Spring真的方便多时,顺便记录下自己在集成redis时的一些想法. 1.从springboot官网查看redis的依赖包 & ...
- asp.net core 支付宝支付( 电脑2.0)
支付宝电脑支付实测在手机浏览器也可以唤醒手机支付宝进行支付,因此也可以作为支付宝手机web支付方式.支付宝电脑支付流程为使用支付宝官方sdk通过获取的支付宝参数构造DefaultAopClient实例 ...
- jenkins X实践系列(1) —— 背景知识
本文介绍jenkins X(以下简称jx)相关的背景技术. jenkins X 简介 Jenkins X 是一个高度集成化的CI/CD平台,基于Jenkins和Kubernetes实现,旨在解决微服务 ...
- Codeforces Round #317 (div 2)
Problem A Arrays 思路:水一水. #include<bits/stdc++.h> using namespace std; ; int n1,n2,k,m,a[N],b[N ...
- “教你如何玩转Web响应式布局” 的更多相关文章
“教你如何玩转Web响应式布局” 的更多相关文章 网址:http://www.360doc.com/relevant/641896074_more.shtml
- BZOJ1367 [Baltic2004]sequence 堆 左偏树
欢迎访问~原文出处——博客园-zhouzhendong 去博客园看该题解 题目传送门 - BZOJ1367 题意概括 Description Input Output 一个整数R 题解 http:// ...
- 074 hbase与mapreduce集成
一:运行给定的案例 1.获取jar包里的方法 2.运行hbase自带的mapreduce程序 lib/hbase-server-0.98.6-hadoop2.jar 3.具体运行 注意命令:mapre ...