教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 PHP生成sitemap.xml的代码浅析

PHP生成sitemap.xml的代码浅析

发布时间:2017-05-01   编辑:jiaochengji.com
本文介绍下,在php编程中,生成sitemap.xml地图文件的一例代码,感兴趣的朋友可以参考学习下。

本节内容:
PHP生成sitemap.xml

将以下代码保存为sitemap.php,上传至服务器,运行即可。

例子:
 

复制代码 代码示例:

<?php
header('Content-type: application/xml; charset="GB2312"',true);

$website = "http://www.jbxue.com"; /* 域名 */
$page_root = "/"; /*网站的目录地址*/

/* changefreq可自行设置 */
$changefreq = "weekly"; //"always", "hourly", "daily", "weekly", "monthly", "yearly" and "never".
/* 修改时间 */
$last_modification = date("Y-m-d\TH:i:s") . substr(date("O"),0,3) . ":" . substr(date("O"),3);

/* 需要生成的目录 */
$allow_dir[] = "web";

/* 需要过滤的目录(不列在SiteMap里面) */
$disallow_dir[] = "admin";
$disallow_dir[] = "_notes";

/* 设置列表的文件名,扩展名不在其中的话SiteMap则不会收录该扩展名的文件 */
$disallow_file[] = ".inc";
$disallow_file[] = ".old";
$disallow_file[] = ".save";
$disallow_file[] = ".txt";
$disallow_file[] = ".js";
$disallow_file[] = "~";
$disallow_file[] = ".LCK";
$disallow_file[] = ".zip";
$disallow_file[] = ".ZIP";
$disallow_file[] = ".CSV";
$disallow_file[] = ".csv";
$disallow_file[] = ".css";
$disallow_file[] = ".class";
$disallow_file[] = ".jar";
$disallow_file[] = ".mno";
$disallow_file[] = ".bak";
$disallow_file[] = ".lck";
$disallow_file[] = ".BAK";

/* simple compare function: equals */
function ar_contains($key, $array) {
foreach ($array as $val) {
if ($key == $val) {
return true;
}
}
return false;
}

/* better compare function: contains */
function fl_contains($key, $array) {
foreach ($array as $val) {
$pos = strpos($key, $val);
if ($pos === FALSE) continue;
return true;
}

return false;
}

/* this function changes a substring($old_offset) of each array element to $offset */
function changeOffset($array, $old_offset, $offset) {
$res = array();
foreach ($array as $val) {
    $res[] = str_replace($old_offset, $offset, $val);
}
return $res;
}

/* this walks recursivly through all directories starting at page_root and
   adds all files that fits the filter criterias */
// taken from Lasse Dalegaard, http://php.net/opendir
function getFiles($directory, $directory_orig = "", $directory_offset="") {
   global $disallow_dir, $disallow_file, $allow_dir;

   if ($directory_orig == "") $directory_orig = $directory;

   if($dir = opendir($directory)) {
       // Create an array for all files found
       $tmp = Array();

       // Add the files
       while($file = readdir($dir)) {
            // Make sure the file exists
            if($file != "." && $file != ".." && $file[0] != '.' ) {
               // If it's a directiry, list all files within it
      //echo "point1<br>";
             if(is_dir($directory . "/" . $file)) {
      //echo "point2<br>";
              $disallowed_abs = fl_contains($directory."/".$file, $disallow_dir); // handle directories with pathes
    $disallowed = ar_contains($file, $disallow_dir); // handle directories only without pathes
    $allowed_abs = fl_contains($directory."/".$file, $allow_dir);
    $allowed = ar_contains($file, $allow_dir);
    if ($disallowed || $disallowed_abs) continue;
    if ($allowed_abs || $allowed){
                   $tmp2 = changeOffset(getFiles($directory . "/" . $file, $directory_orig, $directory_offset), $directory_orig, $directory_offset);
                   if(is_array($tmp2)) {
                       $tmp = array_merge($tmp, $tmp2);
                   }
    }
          } else { // files
    if (fl_contains($file, $disallow_file)) continue;
                 array_push($tmp, str_replace($directory_orig, $directory_offset, $directory."/".$file));
                }
            }
       }

       // Finish off the function
       closedir($dir);
       return $tmp;
   }
}

$a = getFiles($page_root);

echo '<?xml version="1.0" encoding="UTF-8"?>';
?><urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>
<?
foreach ($a as $file) {
?>
   <url>
      <loc><? echo utf8_encode($website.$file); ?></loc>
      <lastmod><? echo utf8_encode(date("Y-m-d\TH:i:s", filectime($page_root.$file)). substr(date("O"),0,3) . ":" . substr(date("O"),3));?></lastmod>
      <changefreq><? echo utf8_encode($changefreq); ?></changefreq>
   </url>
<?
}
?>
</urlset>

您可能感兴趣的文章:
php生成sitemap.xml的实例代码
PHP生成sitemap.xml的代码浅析
php生成sitemap.xml的简单代码
Google Sitemap更快更全面收录网站
php自动生成sitemap地图的代码
详解Django中的sitemap
PHP每15分钟自动更新网站地图(减少服务器消耗)
PHP生成SiteMap文件的代码
php生成唯一标识符的代码
PHP生成静态文件简单示例

关键词: sitemap  网站地图   
[关闭]
~ ~