PHP code example of kri55h / php-sitemapper

1. Go to this page and download the library: Download kri55h/php-sitemapper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kri55h / php-sitemapper example snippets




use Kri55h\SiteMapper;

$sitemapper = new SiteMapper();

// Set the base URL
$sitemapper->addBaseUrl('https://example.com');

// Add URLs to the sitemap
$sitemapper->addUrl('/about', '2025-01-22', 'daily', 0.8);
$sitemapper->addUrl('/contact', '2025-01-21', 'weekly', 0.5);

// Generate XML
$xml = $sitemapper->generateXml();

// Output the XML
header('Content-Type: application/xml');
echo $xml;

// Save to file
$sitemapper->saveToFile('sitemap.xml');

namespace App\Http\Controllers;

use Kri55h\SiteMapper;

class SitemapController extends Controller
{
    public function generateSitemap()
    {
        $sitemapper = new SiteMapper();

        // Add URLs dynamically (e.g., from routes or database)
        $sitemapper->addUrl(route('about'), now()->toDateString(), 'daily', 0.8);
        $sitemapper->addUrl(route('contact'), now()->subDay()->toDateString(), 'weekly', 0.5);

        // Generate XML
        $xml = $sitemapper->generateXml();

        // Return XML response
        return response($xml, 200)->header('Content-Type', 'text/xml');
    }
}

Route::get('/sitemap.xml', [SitemapController::class, 'generateSitemap']);
bash
composer 
bash
composer