PHP Classes

File: src/Plugin/Request/CallableClass/SortedFileIterator.php

Recommend this page to a friend!
  Packages of Thierry Feuzeu   Jaxon   src/Plugin/Request/CallableClass/SortedFileIterator.php   Download  
File: src/Plugin/Request/CallableClass/SortedFileIterator.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change:
Date: 4 months ago
Size: 1,155 bytes
 

Contents

Class file image Download
<?php

/**
 * SortedIterator.php
 *
 * This class sorts files alphabetically by name.
 *
 * @package jaxon-core
 * @author Thierry Feuzeu <thierry.feuzeu@gmail.com>
 * @copyright 2024 Thierry Feuzeu <thierry.feuzeu@gmail.com>
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
 * @link https://github.com/jaxon-php/jaxon-core
 */

namespace Jaxon\Plugin\Request\CallableClass;

use
RecursiveDirectoryIterator;
use
RecursiveIteratorIterator;
use
SplHeap;

use function
strcmp;

class
SortedFileIterator extends SplHeap
{
   
/**
     * @param string $sDirectory
     */
   
public function __construct(string $sDirectory)
    {
       
$itFile = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($sDirectory));
        foreach(
$itFile as $xFile)
        {
           
$this->insert($xFile);
        }
    }

   
/**
     * Compare elements in order to place them correctly in the heap
     *
     * @param mixed $xFile1
     * @param mixed $xFile2
     *
     * @return int
     */
   
public function compare($xFile1, $xFile2): int
   
{
        return
strcmp($xFile2->getRealPath(), $xFile1->getRealPath());
    }
}