PHP 8.5.0 Alpha 4 available for testing

Voting

: seven plus two?
(Example: nine)

The Note You're Voting On

ahmad dot mayahi at gmail dot com
8 years ago
<?php
//This snippet will print out all the cached elements (foreach) .

$cache = new CachingIterator(new ArrayIterator(range(1,100)), CachingIterator::FULL_CACHE);

foreach (
$cache as $c) {

}

print_r($cache->getCache());
?>

<< Back to user notes page

To Top