Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

phpRiot.com:
Using the PHP 5 Iterator interface with Smarty
Mar 10, 2008 @ 14:35:00

On the phpRiot blog, Quentin Zervaas has posted a quick tutorial about using the Iterator interface (part of the Standard PHP Library) together with Smarty to loop through some objects:

The PHP 5 Iterator interface is very useful for defining custom behaviour for looping over objects, however I just noticed that looping over such objects in Smarty will not work correctly. Smarty will in fact cast an object back to an array.

He includes code examples of his problem to illustrate and shows how he got around the problem - a getData() function he defined that just returns the array from the object.

tagged: iterator interface smarty php5 spl object array

Link:


Trending Topics: