這次帶給大家PHP工廠方法設計模式案例詳解,PHP工廠方法設計模式案使用的注意事項有哪些,下面就是實戰案例,一起來看一下。
一、什麼是工廠方法模式
作為一種創建型設計模式,工廠方法模式就是要創造「某種東西」。對於工廠方法,要創建的「東西」是一個產品,這個產品與創建它的類別之間不存在綁定。實際上,為了維持這種鬆散耦合,客戶會透過一個工廠發出請求,再由工廠創建所要求的產品。利用工廠方法模式,請求者只發出請求,而不具體創建產品。
二、何時使用工廠方法模式
如果實例化物件的子類別可能改變,就要使用工廠方法模式。
三、一般工廠方法模式
使用一般工廠方法模式時,客戶只包含工廠的引用,一個工廠生產一種產品。增加一種產品的同時需要增加一個新工廠類別和一個新產品類別。
<?php /** * 一般工厂方法设计模式 **/ //工厂抽象类 abstract class Factory { protected abstract function produce(); public function startFactory() { $pro = $this->produce(); return $pro; } } //文本工厂 class TextFactory extends Factory { protected function produce() { $textProduct = new TextProduct(); return $textProduct->getProperties(); } } //图像工厂 class ImageFactory extends Factory { protected function produce() { $imageProduct = new ImageProduct(); return $imageProduct->getProperties(); } } //产品类接口 interface Product { public function getProperties(); } //文本产品 class TextProduct implements Product { private $text; function getProperties() { $this->text = "此处为文本"; return $this->text; } } //图像产品 class ImageProduct implements Product { private $image; function getProperties() { $this->image = "此处为图像"; return $this->image; } } //客户类 class Client { private $textFactory; private $imageFactory; public function construct() { $this->textFactory = new TextFactory(); echo $this->textFactory->startFactory() . '<br />'; $this->imageFactory = new ImageFactory(); echo $this->imageFactory->startFactory() . '<br />'; } } $client = new Client(); /*运行结果: 此处为文本 此处为图像 */ ?>
四、參數化工廠方法模式
使用參數化工廠方法模式時,客戶包含工廠和產品的引用,發出請求時需要指定產品的種類,一個工廠生產多種產品。增加一種產品時只需要增加一個新產品類即可。
<?php /** * 参数化工厂方法设计模式 **/ //工厂抽象类 abstract class Factory { protected abstract function produce(Product $product); public function startFactory(Product $product) { $pro = $this->produce($product); return $pro; } } //工厂实现 class ConcreteFactory extends Factory { protected function produce(Product $product) { return $product->getProperties(); } } //产品类接口 interface Product { public function getProperties(); } //文本产品 class TextProduct implements Product { private $text; public function getProperties() { $this->text = "此处为文本"; return $this->text; } } //图像产品 class ImageProduct implements Product { private $image; public function getProperties() { $this->image = "此处为图像"; return $this->image; } } //客户类 class Client { private $factory; private $textProduct; private $imageProduct; public function construct() { $factory = new ConcreteFactory(); $textProduct = new TextProduct(); $imageProduct = new ImageProduct(); echo $factory->startFactory($textProduct) . '<br />'; echo $factory->startFactory($imageProduct) . '<br />'; } } $client = new Client(); /*运行结果: 此处为文本 此处为图像 */ ?>
我相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是PHP工廠方法設計模式案例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!