__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace RocketTheme\Toolbox\ArrayTraits;
/**
* Implements \Iterator interface.
*
* @package RocketTheme\Toolbox\ArrayTraits
* @author RocketTheme
* @license MIT
*/
trait Iterator
{
/** @var bool Hack to make Iterator work together with unset(). */
private $iteratorUnset = false;
/**
* Returns the current element.
*
* @return mixed Can return any type.
*/
#[\ReturnTypeWillChange]
public function current()
{
return current($this->items);
}
/**
* Returns the key of the current element.
*
* @return string|null Returns key on success, or NULL on failure.
*/
#[\ReturnTypeWillChange]
public function key()
{
return (string)key($this->items);
}
/**
* Moves the current position to the next element.
*
* @return void
*/
#[\ReturnTypeWillChange]
public function next()
{
if ($this->iteratorUnset) {
// If current item was unset, position is already in the next element (do nothing).
$this->iteratorUnset = false;
} else {
next($this->items);
}
}
/**
* Rewinds back to the first element of the Iterator.
*
* @return void
*/
#[\ReturnTypeWillChange]
public function rewind()
{
$this->iteratorUnset = false;
reset($this->items);
}
/**
* This method is called after Iterator::rewind() and Iterator::next() to check if the current position is valid.
*
* @return bool Returns TRUE on success or FALSE on failure.
*/
#[\ReturnTypeWillChange]
public function valid()
{
return key($this->items) !== null;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ArrayAccess.php | File | 1.69 KB | 0664 |
|
| ArrayAccessWithGetters.php | File | 1.29 KB | 0664 |
|
| Constructor.php | File | 431 B | 0664 |
|
| Countable.php | File | 408 B | 0664 |
|
| Export.php | File | 1.22 KB | 0664 |
|
| ExportInterface.php | File | 624 B | 0664 |
|
| Iterator.php | File | 1.69 KB | 0664 |
|
| NestedArrayAccess.php | File | 5.62 KB | 0664 |
|
| NestedArrayAccessWithGetters.php | File | 1.3 KB | 0664 |
|
| Serializable.php | File | 1.21 KB | 0664 |
|