전자 상거래 프로젝트에서 우리는 이러한 문제에 직면할 수 있습니다. 다양한 제품의 가격을 수정해야 하지만, 이때는 중개 모델을 사용하는 것이 적합합니다.
<?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 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.