【IUser.php】
【FemaleUser.class.php】
【MaleUser.class.php】
【Strategy.class.php】
strategy->showAds().''; $res .= '商品:'.$this->strategy->showGoods().''; return $res; } function setStrategy(IUser $stra) { $this->strategy = $stra; }}
【调用】
////【策略模式】$celue = new Strategy();$gender = 'female'; //假设现在是女性if ($gender == 'female') { $straObj = new FemaleUser();} else { $straObj = new MaleUser();}$celue->setStrategy($straObj);echo $celue->show();