object orientated
object-orientated
Lazy Instantiation In PHP
Mon, 07/27/2009 - 10:32 | by philipnorton42Lazy instantiation (also known as lazy load) is an object orientated design pattern that attempts to reduce the amount of resources needed to load an application by only loading certain parts of it if they are needed. This makes sense as you don't need all parts of an application on every page load, so cutting down the data loaded cuts down the resources and processing time needed to load the page.