PHP设计模式之工厂模式

Posted MiraclesGG

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP设计模式之工厂模式相关的知识,希望对你有一定的参考价值。

<?php

// 设计模式之工厂模式

class Factory
{
  static public function fac ($id)
  {
    switch ($id) {
      case 1:
        return new A();
case 2: return new B();
case 3: return new C();
default: return new D(); } } } /** * 创建一个接口 */ interFace FetchName { public function getname(); } class A implements FetchName { private $name = "A"; public function getname () { return $this->name; } } class B implements FetchName { private $name = "B"; public function getname () { return $this->name; } } class C implements FetchName { private $name = "C"; public function getname () { return $this->name; } } class D implements FetchName { private $name = "D"; public function getname () { return $this->name; } } $obj = Factory::fac(5); echo $obj->getname();






以上是关于PHP设计模式之工厂模式的主要内容,如果未能解决你的问题,请参考以下文章

PHP设计模式—工厂模式之工厂方法模式

php设计模式之工厂设计模式

PHP设计模式—工厂模式之简单工厂模式

PHP的设计模式之工厂模式

PHP设计模式之工厂模式和原型模式

php设计模式之工厂方法