News Feed
Jobs Feed
Sections




News Archive
Web Species Blog:
Lazy evaluation with PHP
June 01, 2011 @ 08:41:01

Juozas Kaziukenas has a new post to his Web Species blog about using "lazy evaluation" in PHP - loading the resources you need for execution and evaluation only as you need them, not all up front.

Recently I needed to process a huge array of data and because of PHP's somewhat inefficient variables and especially arrays that was resulting in "out of memory" errors. However, I couldn't use any other tools than PHP so was forced to come up with a solution implementation in it. Here is how I solved it using principles from functional languages.

He gives an example using Haskell to generate a Fibonacci sequence using its built-in lazy evaluation abilities. Unfortunately, PHP doesn't have such a thing built in, so he tries the next best thing - Iterators. He caries the idea over to the database side too, recommending fetch() in a loop over fetchAll() and some effective joins.

0 comments voice your opinion now!
lazy evaluation haskell functional iterator


blog comments powered by Disqus

Similar Posts

Procurios Blog: Syntactic Sugar for MySQLi Results using SPL Iterators

Alex Netkachov's Blog: 6 PHP coding tips to write less code

Lorna Mitchell's Blog: Using iterator_to_array() in PHP

Anthony Ferrara's Blog: IteratorIterator - PHP Inconsistencies And WTFs

Andrei Zmievski's Blog: PHP 6 and Request Decoding


Community Events











Don't see your event here?
Let us know!


database composer functional zendframework2 framework community phpunit series development podcast application release introduction api code opinion example testing language interview

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework