Introduction to the Observer Pattern
The Observer pattern (Observer) perfectly separates the observer from the observed object. For example, the user interface can serve as an observer, and the business data is the observed. The user interface observes changes in the business data, and after discovering changes in the data, it is displayed on the interface. One principle of object-oriented design is that each class in the system will focus on a certain function rather than other aspects. An object does one thing and does it well. The Observer pattern draws clear boundaries between modules, improving the maintainability and reusability of applications.
The observer design pattern defines a one-to-many dependency relationship between objects, so that when the state of an object changes, all objects that depend on it are notified and automatically refreshed.
Implementation methods
There are many ways to implement the observer pattern. Fundamentally, this pattern must contain two roles: the observer and the observed object. In PHP, the SplSubject and SplObserver interfaces are used to implement the observer pattern.
SplSubject Observed Object
SplSubject { /* 方法 */ abstract public void attach ( SplObserver $observer ) //将被观察对象注册到观察者中 abstract public void detach ( SplObserver $observer ) //被观察对账取消注册 abstract public void notify ( void ) //通知所有观察者 }
SplObserver Observer
SplObserver { /* 方法 */ abstract public void update ( SplSubject $subject ) //观察者接受到通知的时候,作出相应改变 }
UML Class Diagram
Example
Give an example of user registration. After the user registration is successful, the user's data needs to be saved to the database. and sends an email to the user. Use observer code to implement:
When the registration is successful, the observer calls the notify method to notify all observers.
function _main() { $user = new User('zhibin','zhibin'); $user->attach(new UserDatabase()); $user->attach(new UserMail()); $user->notify(); } class User implements SplSubject { /** * 帐号 * @var string */ private $_user_name; /** * 密码 * @var string */ private $_password; /** * 观察者列表 * @var array */ private $_observers; public function __construct($user_name,$password) { $this->_user_name = $user_name; $this->_password = $password; $this->_observers = array(); } public function attach(SplObserver $obs) { array_push($this->_observers,$obs); } public function detach(SplObserver $obs) { if($key = array_search($obs,$this->_observers,true)) { unset($this->_observers[$key]); } } public function notify() { foreach($this->_observers as $obs) { $obs->update($this); } } } class UserDatabase implements SplObserver { public function update(SplSubject $sub) { //update database echo 'update database'.PHP_EOL; } } class UserMail implements SplObserver { public function update(SplSubject $sub) { //send mail to user echo 'send mail to user'.PHP_EOL; } } _main();
The above introduces the PHP design pattern: the observer pattern, including the observer pattern and design pattern. I hope it will be helpful to friends who are interested in PHP tutorials.