php有几种模式,PHP常见的几种设计模式

一、单例模式

单例模式,即在应用程序中最多只有该类的一个实例存在,一旦创建,就会一直存在于内存中!

单例设计模式常应用于数据库类设计,采用单例模式,只连接一次数据库,防止打开多个数据库连接。

一个单例类应具备以下特点:

单例类不能直接实例化创建,而是只能由类本身实例化。因此,要获得这样的限制效果,构造函数必须标记为private,从而防止类被实例化。

需要一个私有静态成员变量来保存类实例和公开一个能访问到实例的公开静态方法。

在PHP中,为了防止他人对单例类实例克隆,通常还为其提供一个空的私有__clone()方法。

单例模式的例子:<?php

/**

* Singleton of Database

*/

class Database

{

// We need a static private variable to store a Database instance.

privatestatic $instance;

// Mark as private to prevent it from being instanced.

private function__construct()

{

// Do nothing.

}

private function__clone()

{

// Do nothing.

}

public static function getInstance()

{

if (!(self::$instance instanceof self)) {

self::$instance = new self();

}

return self::$instance;

}

}

二、工厂模式

主要是当操作类的参数变化时,只用改相应的工厂类就可以。

常用于根据输入参数的不同或者应用程序配置的不同来创建一种专门用来实例化并返回其对应的类的实例。

举例子,假设矩形、圆都有同样的一个方法,那么我们用基类提供的API来创建实例时,通过传参数来自动创建对应的类的实例,他们都有获取周长和面积的功能。<?php

interface InterfaceShape

{

function getArea();

function getCircumference();

}

/**

* 矩形

*/

class Rectangle implements InterfaceShape

{

private $width;

private $height;

public function __construct($width, $height)

{

$this->width = $width;

$this->height = $height;

}

public function getArea()

{

return $this->width* $this->height;

}

public function getCircumference()

{

return 2 * $this->width + 2 * $this->height;

}

}

/**

* 圆形

*/

class Circle implements InterfaceShape

{

private $radius;

function __construct($radius)

{

$this->radius = $radius;

}

public function getArea()

{

return M_PI * pow($this->radius, 2);

}

public function getCircumference()

{

return 2 * M_PI * $this->radius;

}

}

/**

* 形状工厂类

*/

class FactoryShape

{

public static function create()

{

switch (func_num_args()) {

case1:

return newCircle(func_get_arg(0));

case2:

return newRectangle(func_get_arg(0), func_get_arg(1));

default:

# code...

break;

}

}

}

$rect =FactoryShape::create(5, 5);

// object(Rectangle)#1 (2) { ["width":"Rectangle":private]=> int(5) ["height":"Rectangle":private]=> int(5) }

var_dump($rect);

echo "
";

// object(Circle)#2 (1) { ["radius":"Circle":private]=> int(4) }

$circle =FactoryShape::create(4);

var_dump($circle);

三、注册树模式

特点: 将对象注册到一个类的成员变量中,实现全局访问

应用场景: 某些重要的值需要全局调用时可以采用这种模式

简单示例:Class Register

{

public static $treeList;

//设置

static public function set($key,$value)

{

self::$treeList["$key"] = $value;

}

//获取

static public function get($key)

{

if(!isset(self::$treeList["$key"])){

return false;

}

return self::$treeList[$key];

}

//取消设置

static public function _unset($key)

{

if(isset(self::$treeList[$key])){

unset(self::$treeList[$key]);

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值