by TurboFlash | Feb 7, 2009 | PHP
There wasn’t much information available on the Internet by keyword searching on how to do clearing/deleting/removing operations on PHP ArrayObject class so I decided to contribute a small post on this topic and hopefully it will save some time for people...
by TurboFlash | Feb 5, 2009 | Zend Framework
In Part 1, we are able to split the content into parts and apply decorators on them separately. This can be achieved by using the following classes. I guess the render method of each class pretty much sums up what they do so I will not explain further. <?php /** *...
by TurboFlash | Feb 5, 2009 | Zend Framework
During form rendering, the decorators are executed in the order added and rendering are done on the same content throughout. If you were to open up Zend/Form.php, you will find inside an elegant render method as follows that summarizes what I’ve mentioned...