Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Symfony /
Component /
Finder /
Iterator /
Delete
Unzip
Name
Size
Permission
Date
Action
CustomFilterIterator.php
1.51
KB
-rw-r--r--
2016-06-06 18:05
DateRangeFilterIterator.php
1.44
KB
-rw-r--r--
2016-06-06 18:05
DepthRangeFilterIterator.php
1.22
KB
-rw-r--r--
2016-06-06 18:05
ExcludeDirectoryFilterIterator.php
2.39
KB
-rw-r--r--
2016-06-06 18:05
FilePathsIterator.php
2.83
KB
-rw-r--r--
2016-06-06 18:05
FileTypeFilterIterator.php
1.34
KB
-rw-r--r--
2016-06-06 18:05
FilecontentFilterIterator.php
1.41
KB
-rw-r--r--
2016-06-06 18:05
FilenameFilterIterator.php
1.15
KB
-rw-r--r--
2016-06-06 18:05
FilterIterator.php
1.64
KB
-rw-r--r--
2016-06-06 18:05
MultiplePcreFilterIterator.php
3.18
KB
-rw-r--r--
2016-06-06 18:05
PathFilterIterator.php
1.42
KB
-rw-r--r--
2016-06-06 18:05
RecursiveDirectoryIterator.php
4.29
KB
-rw-r--r--
2016-06-06 18:05
SizeRangeFilterIterator.php
1.41
KB
-rw-r--r--
2016-06-06 18:05
SortableIterator.php
2.47
KB
-rw-r--r--
2016-06-06 18:05
Save
Rename
<?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\Iterator; @trigger_error('The '.__NAMESPACE__.'\FilePathsIterator class is deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED); use Symfony\Component\Finder\SplFileInfo; /** * Iterate over shell command result. * * @author Jean-François Simon <contact@jfsimon.fr> * * @deprecated since 2.8, to be removed in 3.0. */ class FilePathsIterator extends \ArrayIterator { /** * @var string */ private $baseDir; /** * @var int */ private $baseDirLength; /** * @var string */ private $subPath; /** * @var string */ private $subPathname; /** * @var SplFileInfo */ private $current; /** * @param array $paths List of paths returned by shell command * @param string $baseDir Base dir for relative path building */ public function __construct(array $paths, $baseDir) { $this->baseDir = $baseDir; $this->baseDirLength = strlen($baseDir); parent::__construct($paths); } /** * @param string $name * @param array $arguments * * @return mixed */ public function __call($name, array $arguments) { return call_user_func_array(array($this->current(), $name), $arguments); } /** * Return an instance of SplFileInfo with support for relative paths. * * @return SplFileInfo File information */ public function current() { return $this->current; } /** * @return string */ public function key() { return $this->current->getPathname(); } public function next() { parent::next(); $this->buildProperties(); } public function rewind() { parent::rewind(); $this->buildProperties(); } /** * @return string */ public function getSubPath() { return $this->subPath; } /** * @return string */ public function getSubPathname() { return $this->subPathname; } private function buildProperties() { $absolutePath = parent::current(); if ($this->baseDir === substr($absolutePath, 0, $this->baseDirLength)) { $this->subPathname = ltrim(substr($absolutePath, $this->baseDirLength), '/\\'); $dir = dirname($this->subPathname); $this->subPath = '.' === $dir ? '' : $dir; } else { $this->subPath = $this->subPathname = ''; } $this->current = new SplFileInfo(parent::current(), $this->subPath, $this->subPathname); } }