定义一系列的算法,把它们一个个封装起来, 并且使它们可相互替换。本模式使得算法的变化可独立于使用它的客户。
意图
策略模式
定义一系列的算法,把它们一个个封装起来, 并且使它们可相互替换。本模式使得算法可独立于使用它的客户而变化。
适用性
关于模式本身的概念,请参考网上其它文章
此处只讨论在PHP实际开发过程中的应用
此模式将算法与数据进行分离.
算法:狭义算法,对固定结构的输入数据产生一个固定结构的输出. 不同的算法,输入是相同的,输出是不同但类似的,或输出相同但实现过程不同.
数据:一个持有数据的对象/类定义.
应用此模式的场景:
1.多种不同类的数据对象, 持有相同结构的数据.
2.多种算法对象,同一类或实现了同一接口
3.调用者先告诉数据对象将使用哪一个算法 对象. 然后数据对象在业务逻辑中将使用指定的算法 对象来对数据进行处理.
使用局限:
1.通常PHP不用于进行数学计算类的任务,这种任务通常由C/C++/Java来进行.
2.多种数据对象,多种算法对象, 一般的PHP业务逻辑不会复杂到这种程度.
设想一个实例: 程序中有多个业务处理类, 我们要对业务处理过程记录日志, 现在有多种日志方式可供选择:文本/数据库/网络应用.调用者可以自行选择使用哪种日志方式.
实现过程:
1.先定义一个日志的父类/接口,然后创建三种具体的日志实现类
interface LogInterface {
public function log($data);
}
class LogFile implements LogInterface{
public function log($data){
//将数据写入文本文件
}
}
class LogDB implements LogInterface{
public function log($data){
//将数据写入数据库
}
}
class LogNet implements LogInterface{
public function log($data){
//通过网络对数据进行日志记录
}
}
2.定义一个Trait (为所有业务类增加一些功能)
trait LogTrait{
//记录具体的日志对象
private $_log;
//调用者用来设置具体的日志对象
public function setLog(LogInterface $log){
$this->_log=$log;
}
//业务类中使用的功能
//此方法可以定义为私有,如果没有外部访问的话
//此方法的实现也可变更,数据可以使用参数方式传递
public function log(){
$this->_log->log($this->data);
}
}
3.所有的业务类(需要日志功能的)
//此类可能已经继承了父类
class ModelA {
use LogTrait;
//业务类中的某一段需要使用日志的代码段
public function process(){
//为日志准备数据
$this->data=$data;
//记录日志,此代码可在本类中多次出现,或被外部调用
$this->log();
}
}

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
