Quantcast
Channel: PHPDeveloper.org
Viewing all articles
Browse latest Browse all 13

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

$
0
0

Lorna Mitchell has a new post to her blog today showing off a lesser-known but very useful function included in PHP - the iterator_to_array function, used to translate things that implement Traversable into arrays.

Someone watching over my shoulder recently had never seen the ubiquitously-useful iterator_to_array() before. [...] Mostly I find this useful when I'm working with collections of data as these often present themselves as an object that you can foreach() over, but you can't dump it directly. If the object in question implements the Traversable interface, you can instead pass it into iterator_to_array to get the data as an array.

She includes a brief snippet of code showing it in use - transforming the results from a MongoDB cursor object back into an array.


Viewing all articles
Browse latest Browse all 13

Latest Images

Trending Articles



Latest Images