php设计模式之——建造者模式
_age = $age; } public function setName($name){ $this->_name = $name; } public function setProv($prov){ $this->_prov = $prov; } public function getMan(){ echo $this->_age.$this->_name.$this->prov; } } class Building{ protected $man = ''; public function __construct(){ $this->man = new UserInfo(); } public function buildman($array){ $this->man->setAge($array['age'); $this->man->setAge($array['name'); $this->man->setAge($array['prov'); } public function getman(){ $this->man->getMan(); } }
文章题目:php设计模式之——建造者模式
分享URL:http://abwzjs.com/article/jcehod.html