prolificrohit/sitemaps 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

prolificrohit/sitemaps

最新稳定版本:1.0.2

Composer 安装命令:

composer require prolificrohit/sitemaps

包简介

A simple, scalable, highly extensible and seo friendly php sitemap generator.

README 文档

README

A simple, scalable, highly extensible and seo friendly php sitemap generator. It also supports image sitemap.

Installation

You can install the package through composer:

composer require prolificrohit/sitemaps

Examples

  • For any array of urls:

      $sitemap = new Sitemap("sitemaps/test.xml");
      $sitemap->setMaxUrls(5000);
      $sitemap->setBuffer(1000);
      foreach ($urls as $url) {
          $sitemap->addUrl($url);
      }
      $fileNames = $sitemap->finish();
    
  • To add images:

    foreach ($items as $item) {
        $sitemap->addUrl($item->link, function($url) use($item){
            $url->addImage($item->image, "Caption", "Title");
        });
    }
    

Dependency

It is a simple php package and hence it supports all php based frameworks like laravel, zend, symfony, falcon, lumen etc. The only dependency for this package is PHP.

Coming Soon

Support for video and news sitemap is on the way.

License

License: GPL v3

统计信息

  • 总下载量: 691
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 9
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 9
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0-or-later
  • 更新时间: 2018-01-01