Add support symlink into Autoload.
This commit is contained in:
18
util/AsciiSortedIterator.php
Normal file
18
util/AsciiSortedIterator.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
class AsciiSortedIterator extends SplHeap
|
||||
{
|
||||
public function __construct(Iterator $iterator)
|
||||
{
|
||||
foreach ($iterator as $item) {
|
||||
$this->insert($item);
|
||||
}
|
||||
}
|
||||
public function compare($b,$a)
|
||||
{
|
||||
/**
|
||||
* @var $a SplFileInfo
|
||||
* @var $b SplFileInfo
|
||||
*/
|
||||
return strcmp($a->getPath() . DIRECTORY_SEPARATOR . $a->getFileName(), $b->getPath() . DIRECTORY_SEPARATOR . $b->getFileName());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user