kri55h/php-sitemapper
Composer 安装命令:
composer require kri55h/php-sitemapper
包简介
php-sitemapper: A lightweight and powerful PHP library for generating dynamic XML sitemaps effortlessly. Designed to help developers enhance their website's SEO by creating search-engine-friendly sitemaps, this tool is perfect for small and large-scale projects alike.
关键字:
README 文档
README
SiteMapper is a lightweight, chainable PHP library to generate SEO-friendly XML sitemaps dynamically.
Designed for modern PHP projects and frameworks (Laravel, Codeigniter, Symfony, plain PHP).
Features
- Fluent API:
addUrl(...)->save()for concise, readable code. - Add per-URL metadata:
priority,lastmodandchangefreq. generateXml()returns an XML string ready to return from controllers.outputXml()sends correct headers and echoes XML directly.saveToFile()writes sitemap XML to disk.- Minimal dependencies — requires only PHP and SimpleXML.
Requirements
- PHP 7.4 or newer
ext-simplexmlenabled
Installation
Install via Composer:
composer require kri55h/php-sitemapper
Then autoload:
require 'vendor/autoload.php'; use Kri55h\SiteMapper;
Quick Example (recommended)
<?php require 'vendor/autoload.php'; use Kri55h\SiteMapper; $map = new SiteMapper(); // Add and save entries (pass full URLs) $map->addUrl('https://example.com/about', 0.8, '2025-08-09', 'daily')->save() ->addUrl('https://example.com/contact', 0.5, '2025-08-09', 'weekly')->save(); // Return XML from a controller or script header('Content-Type: application/xml; charset=UTF-8'); echo $map->generateXml();
Important: addUrl() stages a URL in memory. Call save() to commit the staged entry into the sitemap list — otherwise it will not appear in generateXml().
Full Example (all functions / backwards-compatible style)
<?php require 'vendor/autoload.php'; use Kri55h\SiteMapper; $map = new SiteMapper(); // Staged style: call setters, then save() $map->addUrl('https://example.com/') ->setPriority(1.0) ->setLastModified('2025-08-09') ->setChangeFrequency('daily') ->save(); // Another entry, using positional args $map->addUrl('https://example.com/about', 0.8, '2025-08-09', 'weekly')->save(); // Save sitemap to disk $map->saveToFile(__DIR__ . '/public/sitemap.xml'); // Or output directly (sets header + echoes XML) $map->outputXml();
Public API Reference
-
addUrl(string $location, ?float $priority = null, ?string $last_modified = null, ?string $change_frequency = null): selfAdds a staged URL entry. Pass a full URL (https://example.com/page). Returns $this for chaining. -
setPriority(float $priority): selfSet priority (0.0 — 1.0) for the currently staged entry. Chainable. -
setLastModified(string $last_modified): selfSet the last modified date (YYYY-MM-DD) for the currently staged entry. Chainable. -
setChangeFrequency(string $change_frequency): selfSet change frequency (always|hourly|daily|weekly|monthly|yearly|never). Chainable. -
save(): selfCommit the currently staged entry into the sitemap list. Throws RuntimeException if no loc was staged. Chainable. -
generateXml(): stringGenerate and return the sitemap XML string. Use this to return XML from controller routes. -
outputXml(): voidSend Content-Type: application/xml; charset=UTF-8 and echo the generated XML. Convenience helper for quick endpoints. -
saveToFile(string $filePath): voidWrite the generated sitemap XML to the given file path.
Migration notes (from previous versions that had addBaseUrl())
If you upgraded from a version that supported addBaseUrl() and relative paths:
- Before (old):
$map->addBaseUrl('https://example.com'); $map->addUrl('/about'); echo $map->generateXml();
- Now (new):
$map->addUrl('https://example.com/about')->save(); echo $map->generateXml();
Why: The library no longer maintains global base URL state. This makes the API explicit and safer for mixed-domain usages.
Best practices
-
Always call
save()afteraddUrl()(or use positional arguments withaddUrl(...)->save()). -
Use
generateXml()to return XML from controllers (so the framework can manage responses). -
Use
outputXml()only for simple scripts or endpoints where you want the library to send headers. -
For bulk imports, add entries in a loop and call
save()per entry, or implement your own batching helper.
License
This project is licensed under the MIT License.
Author
Krish Siddhapura — siddhapurakrish007@gmail.com — https://github.com/KRI55H
Keywords (for SEO)
PHP sitemap generator, XML sitemap, SEO sitemap PHP, SiteMapper, sitemap generator, Laravel sitemap generator, dynamic sitemap, Laravel dynamic sitemap generator.
kri55h/php-sitemapper 适用场景与选型建议
kri55h/php-sitemapper 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 62 次下载、GitHub Stars 达 2, 最近一次更新时间为 2025 年 01 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「PHP sitemap generator」 「Dynamic XML sitemap」 「SEO-friendly sitemap library」 「Generate sitemaps in PHP」 「Lightweight PHP sitemap tool」 「Laravel sitemap generator」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 kri55h/php-sitemapper 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kri55h/php-sitemapper 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 kri55h/php-sitemapper 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Memio's PrettyPrinter, used to generate PHP code from given Model
Symfony sitemap generator
PHP Simple Sitemap Generator
Interfaces for web resource models and services to retrieve and create them
Sitemap crawler/generator. For the given URL it will return sitemap XML file with URLs and images.
Sitemap and sitemap index builder for Jigsaw.
统计信息
- 总下载量: 62
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 15
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-01-22