HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/ly.fwmnzf.com/addons/sitemap/library/Sitemap.php
<?php
// +----------------------------------------------------------------------
// | Yzncms [ 御宅男工作室 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018 http://yzncms.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 御宅男 <530765310@qq.com>
// +----------------------------------------------------------------------

// +----------------------------------------------------------------------
// | sitemap类
// +----------------------------------------------------------------------
namespace addons\sitemap\library;

class Sitemap
{
//类定义开始

    private $config = array(
        'encoding' => 'UTF-8',
        'ver'      => '1.0',
    );
    private $content = '';
    // Items部分
    private $items = array();

    public function __get($name)
    {
        if (isset($this->config[$name])) {
            return $this->config[$name];
        }
        return null;
    }

    public function __set($name, $value)
    {
        if (isset($this->config[$name])) {
            $this->config[$name] = $value;
        }
    }

    public function __isset($name)
    {
        return isset($this->config[$name]);
    }

    public function content($name)
    {
        if (empty($this->content)) {
            $this->Build();
        }

        $this->content;
    }

    /**
     * 架构函数
     * @access public
     * @param array $config  上传参数
     */
    public function __construct()
    {

    }

    /*     * *********************************************************************** */

    // 函数名: AddItem
    // 功能: 添加一个节点
    //$changefreq | always 经常,hourly 每小时,daily 每天,weekly 每周,monthly 每月,yearly 每年,never 从不
    //$mobile | mobile 跳转适配, htmladapt 代码适应,  pc,mobile 自适应
    /*     * *********************************************************************** */

    public function AddItem($loc, $priority, $changefreq = 'Always', $time = 0, $mobile = "pc,mobile")
    {
        $arr = array(
            '1.0',
            '0.9',
            '0.8',
            '0.7',
            '0.6',
            '0.5',
        );
        $this->items[] = array(
            'loc'        => $loc,
            'priority'   => $arr[$priority],
            'lastmod'    => $time ? (is_numeric($time) ? date('Y-m-d H:i:s', $time) : $time) : date('Y-m-d H:i:s', time()),
            'changefreq' => $changefreq,
            'mobile'     => $mobile,
        );
    }

    /*     * *********************************************************************** */

    // 函数名: Build
    // 功能: 生成sitemap xml文件内容
    /*     * *********************************************************************** */
    public function Build()
    {
        $s = "<?xml version='1.0' encoding='{$this->encoding}'?>\r\n";
        /* $s .= "<?xml-stylesheet type='text/xsl' href='sitemap.xsl'?>\r\n";*/
        $s .= "\t<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>\r\n";
        // items
        for ($i = 0; $i < count($this->items); $i++) {
            $s .= "\t\t<url>\n";
            $s .= "\t\t\t<loc>{$this->items[$i]['loc']}</loc>\r\n";
            $s .= "\t\t\t<priority>{$this->items[$i]['priority']}</priority>\r\n";
            $s .= "\t\t\t<lastmod>{$this->items[$i]['lastmod']}</lastmod>\r\n";
            $s .= "\t\t\t<changefreq>{$this->items[$i]['changefreq']}</changefreq>\r\n";
            /*$s .= "\t\t\t<mobile:mobile type=\"{$this->items[$i]['mobile']}\"/>\r\n";*/
            $s .= "\t\t</url>\n";
        }
        // close
        $s .= "\t</urlset>";
        $this->content = $s;
    }

    /*     * *********************************************************************** */

    // 函数名: Show
    // 功能: 将产生的sitemap内容直接打印输出
    /*     * *********************************************************************** */
    public function Show()
    {
        if (empty($this->content)) {
            $this->Build();
        }

        header("Content-Type: text/xml; charset=utf-8");
        echo ($this->content);
    }

    /*     * *********************************************************************** */

    // 函数名: SaveToFile
    // 功能: 将产生的sitemap 内容保存到文件
    // 参数: $fname 要保存的文件名
    /*     * *********************************************************************** */
    public function SaveToFile($fname)
    {
        if (empty($this->content)) {
            $this->Build();
        }

        $handle = fopen($fname, 'w+');
        if ($handle === false) {
            return false;
        }

        fwrite($handle, $this->content);
        fclose($handle);
    }

    /*     * *********************************************************************** */

    // 函数名: getFile
    // 功能: 从文件中获取输出
    // 参数: $fname 文件名
    /*     * *********************************************************************** */
    public function getFile($fname)
    {
        $handle = fopen($fname, 'r');
        if ($handle === false) {
            return false;
        }

        while (!feof($handle)) {
            echo fgets($handle);
        }
        fclose($handle);
    }

}