電商專案中我們可能遇到這樣的問題:要對不同的商品修改價格,但是商品是有巨大的差別的,這個時候就適合使用中介者模式。
<?php class Book{ private $name; private $obj=NULL; public $price; function __construct($name, $price, Intermediar $obj){ $this->name = $name; $this->price = $price; $this->obj = $obj; } function changprice($newprice){ $this->obj->change($this, $newprice); } } /* * 实际情况中类差别很大可能无法创建父类 * */ class Computer{ private $name; private $obj; public $price; function __construct($name, $price, Intermediar $obj){ $this->name = $name; $this->price = $price; $this->obj = $obj; } function changprice($newprice){ $this->obj->change($this, $newprice); } } /* * 中介者类 * * */ class Intermediar{ public function change($obj, $value){ $obj->price = $value; } } $inter = new Intermediar(); $label = new Book('book', 34, $inter); $label->changprice(100); var_dump($label);
以上就介紹了14中介者模式,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。