maxgoryunov / saving-iterator
True Caching Iterator for PHP
Requires
- php: >=8.0
- infection/infection: ^0.23.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- phan/phan: ^4.0
- phpmd/phpmd: ^2.10
- phpstan/phpstan: ^0.12.91
- phpunit/phpunit: ^9.5
- rregeer/phpunit-coverage-check: ^0.3.1
- vimeo/psalm: ^4.8
This package is auto-updated.
Last update: 2025-03-10 20:22:52 UTC
README
Saving Iterator is a true caching iterator for PHP. It aims to solve the same problems as PHP's Caching Iterator but with a better encapsulation of data in mind. It has properties of both Iterator
and array
.
How to use
Require it with Composer:
composer require maxgoryunov/saving-iterator
Then include this in your index.php
or any other main file:
require __DIR__ . "./vendor/autoload.php";
If you have any questions, ask them at Discussions.
Decorating Iterators
In order to use SavingIterator
you need to provide a source and a target. Any object with Iterator
interface is a suitable source. Target needs to be an AddingIterator
(usually ArrayAddingIterator
is enough):
$squares = new SavingIterator( new SquaringIterator( [1, 2, 3, 4, 5, 6] ), new ArrayAddingIterator() );
If the origin object is not an Iterator
then wrap it in TransparentIterator
:
$wrapped = new SavingIterator( new TransparentIterator($origin), new ArrayAddingIterator() );
If you do not want to store nulls in your AddingIterator
then use ValidAddingIterator
:
$valid = new ValidAddingIterator( new ArrayAddingIterator() );
Decorating Generators
You can also use it with Generators
. If the iterator is called twice, rewind exception will not be thrown.
Attention: it is not (currently) possible to pass callable as a parameter. You have to manually invoke Generator
function:
function numerals(): Generator { for ($i = 0; $i < 10; $i++) { yield $i; } } $numerals = new SavingIterator( numerals(), new ArrayAddingIterator() );
How to contribute
Fork this repository, then create a folder for it and install Composer if you do not have it.
Clone this repository:
git clone https://github.com/MaxGoryunov/saving-iterator
Then run:
composer install
This command will install all dependencies required for development. Make changes and open a pull request. Your PR will be reviewed and accepted if it does not fail our build.