struggle-for-php / sfp-iterator-url
A streamWrapper for Iterator
0.1.1
2017-02-16 09:54 UTC
Requires
- php: >=5.5
Requires (Dev)
- phpunit/phpunit: ~4.6
- squizlabs/php_codesniffer: ~2.0
This package is auto-updated.
Last update: 2024-11-06 16:11:37 UTC
README
A streamWrapper for Iterator.
Why ?
To avoid entire buffering.
Usage (Yeah! memory usage!)
class Bigsize extends IteratorIterator { public function current() { $str = str_repeat($this->getInnerIterator()->current(), 8192); return $str; } } $iterator = new Bigsize(new ArrayIterator(range(1, 100))); $fp = (new IteratorUrl)->open($iterator); $body = new Zend\Diactoros\Stream($fp); // emit fpassthru($body->detach()); echo formatBytes(memory_get_usage()); // 278.97 KB <-- look // echo $body->__toString(); // 1.75MB