PHP 8.3.31
Preview: Iterator.php Size: 1.02 KB
//opt/cloudlinux/alt-php55/root/usr/share/pear/test/Finder/Symfony/Component/Finder/Tests/Iterator/Iterator.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Finder\Tests\Iterator;

class Iterator implements \Iterator
{
    protected $values = array();

    public function __construct(array $values = array())
    {
        foreach ($values as $value) {
            $this->attach(new \SplFileInfo($value));
        }
        $this->rewind();
    }

    public function attach(\SplFileInfo $fileinfo)
    {
        $this->values[] = $fileinfo;
    }

    public function rewind()
    {
        reset($this->values);
    }

    public function valid()
    {
        return false !== $this->current();
    }

    public function next()
    {
        next($this->values);
    }

    public function current()
    {
        return current($this->values);
    }

    public function key()
    {
        return key($this->values);
    }
}

Directory Contents

Dirs: 0 × Files: 19

Name Size Perms Modified Actions
1.23 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.81 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.04 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.59 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.65 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.49 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.73 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.58 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.30 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.02 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.36 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
552 B lrw-r--r-- 2019-12-18 11:24:06
Edit Download
3.44 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.04 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
3.24 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.80 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.13 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
1.50 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download
2.34 KB lrw-r--r-- 2019-12-18 11:24:06
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).