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

Cormac' PHP Blog:
Practical example php implementation of the Observer pattern
Oct 14, 2010 @ 13:36:35

New from Cormac's blog there's a post looking at an implementation of the Observer design pattern in a bit more practical scenario than some other examples out there.

Observer is a pattern where an object called the subject maintains a list of dependents (observers) and notifies them of any state changes. I implemented this recently to log changes to an Account object, and to notify the account holder if their account had expire - here’s the basics of the code, hopefully it’ll help someone else figure out how the pattern works

The basis of the Observer pattern is that you attach these "observer" objects to a main object. These watch the object and see if something changes (like a property value) and react accordingly. For their example, they create a setup that extends the main Observer class to have some or the detection functionality built-in.

tagged: practical example observer pattern

Link:


Trending Topics: