- var_dump: documentation ( source)
<?php
declare(strict_types=1);
namespace App;
use Generator;
use CachingIterator;
class Foo {}
$generator =
/**
* @return Generator<bool, bool>
*/
static function (): Generator {
yield true => true;
yield false => false;
yield "foo" => new Foo();
yield "bar" => new Foo();
yield "baz" => new Foo();
};
$iterator = new CachingIterator($generator(), CachingIterator::FULL_CACHE | CachingIterator::CALL_TOSTRING);
foreach ($iterator as $k => $v) {
var_dump($k, $v);
}
foreach ($iterator->getCache() as $k => $v) {
var_dump($k, $v);
}