


Thoughts after reading 'In-depth PHP Object Orientation, Patterns and Practice' (3)
Command pattern:
When I first came into contact with this command pattern, it felt like a simplified mvc framework. Access from different paths, and then the controller determines the specific php file to be called.
<span><span><?php </span><span><em></em></span><span>class </span><span>CommandContext{ </span><span><em>//"</em></span><span><em>命令容器</em></span><span><em>" </em></span><span><em></em></span><span>private </span><span>$params </span><span>= </span><span>array</span><span>(); </span><span>function </span><span>addParam(</span><span>$key</span><span>,</span><span>$val</span><span>){ </span><span>$this</span><span>-></span><span>params</span><span>[</span><span>$key</span><span>] = </span><span>$val</span><span>; </span><span> } </span><span>function </span><span>getParam(</span><span>$key</span><span>){ </span><span>return </span><span>$this</span><span>-></span><span>params</span><span>[</span><span>$key</span><span>]; </span><span> } </span><span>} </span><span>class </span><span>Controller{ </span><span>private </span><span>$cmdContext</span><span>; </span><span>function </span><span>__construct(){ </span><span>$this</span><span>-></span><span>cmdContext </span><span>= </span><span>new </span><span>CommandContext(); </span><span> } </span><span><em>// </em></span><span><em></em></span><span>function </span><span>getCmdContext(){ </span><span>return </span><span>$this</span><span>-></span><span>cmdContext</span><span>; </span><span> } </span><span>function </span><span>process(){ </span><span>$action </span><span>= </span><span>$this</span><span>-></span><span>cmdContext</span><span>->getParam(</span><span>"action"</span><span>); </span><span><em>//</em></span><span><em>通过</em></span><span><em>“</em></span><span><em>命令容器</em></span><span><em>”</em></span><span><em>获得命令 </em></span><span><em></em></span><span>$command </span><span>= CommandFactory::</span><span><em>getCommand</em></span><span>(</span><span>$action</span><span>); </span><span><em>//</em></span><span><em>将</em></span><span><em>“</em></span><span><em>命令</em></span><span><em>”</em></span><span><em>传给</em></span><span><em>“</em></span><span><em>命令工厂</em></span><span><em>”</em></span><span><em>,得到</em></span><span><em>“</em></span><span><em>命令</em></span><span><em>”</em></span><span><em>所对应的子</em></span><span><em>command</em></span><span><em>类对象 </em></span><span><em></em></span><span>if</span><span>(</span><span>$command</span><span>->execute(</span><span>$this</span><span>-></span><span>cmdContext</span><span>)){</span><span><em>//</em></span><span><em>调用子类对象的</em></span><span><em>execute</em></span><span><em>方法并判断 </em></span><span><em></em></span><span><em>//</em></span><span><em>成功 </em></span><span><em></em></span><span><em>//</em></span><span><em>调用对应视图 </em></span><span><em></em></span><span>}</span><span>else</span><span>{ </span><span><em>//</em></span><span><em>失败 </em></span><span><em></em></span><span>} </span><span> } </span><span>} </span><span>class </span><span>CommandFactory{ </span><span>static function </span><span>getCommand(</span><span>$cmd</span><span>){ </span><span>$file </span><span>= </span><span>'commands/'</span><span>.</span><span>$cmd</span><span>.</span><span>'Command.php'</span><span>; </span><span><em>//</em></span><span><em>命令所对应的</em></span><span><em>php</em></span><span><em>文件路径 </em></span><span><em></em></span><span><em></em></span><span>if</span><span>(! </span><span><em>file_exists</em></span><span>(</span><span>$file</span><span>)){ </span><span>throw new </span><span>Exception(</span><span>"Could not find file </span><span>$file</span><span>"</span><span>); </span><span> } </span><span>require_once</span><span>(</span><span>$file</span><span>); </span><span>$class </span><span>= </span><span>$cmd</span><span>.</span><span>'Command'</span><span>; </span><span><em>//</em></span><span><em>形成类名 </em></span><span><em></em></span><span>if</span><span>(! </span><span><em>class_exists</em></span><span>(</span><span>$class</span><span>)){ </span><span>throw new </span><span>Exception(</span><span>"Could not find class </span><span>$class</span><span>"</span><span>); </span><span> } </span><span>$result </span><span>= </span><span>new </span><span>$class</span><span>(); </span><span>return </span><span>$result</span><span>; </span><span> } </span><span>} </span><span><em>//commands</em></span><span><em>文件夹内 </em></span><span>abstract class </span><span>Command{ </span><span>abstract function </span><span>execute(CommandContext </span><span>$commandContext</span><span>); </span><span>} </span><span>class </span><span>demoCommand </span><span>extends </span><span>Command{ </span><span>function </span><span>execute(CommandContext </span><span>$commandContext</span><span>){ </span><span>return </span><span>"ok"</span><span>; </span><span> } </span><span>} </span><span><em>//</em></span><span><em>使用代码 </em></span><span>$controller </span><span>= </span><span>new </span><span>Controller(); </span><span>$cmdContext </span><span>= </span><span>$controller</span><span>->getCmdContext(); </span><span>$cmdContext</span><span>->addParam(</span><span>"action"</span><span>,</span><span>"demo"</span><span>); </span><span>$demo </span><span>= </span><span>$controller</span><span>->process(); </span><span>?></span></span></span>
The above introduces my thoughts after reading "In-depth PHP Object-Oriented, Patterns and Practices" (Part 3), including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Concepts and instances of classes and methods Class (Class): used to describe a collection of objects with the same properties and methods. It defines the properties and methods common to every object in the collection. Objects are instances of classes. Method: Function defined in the class. Class construction method __init__(): The class has a special method (construction method) named init(), which is automatically called when the class is instantiated. Instance variables: In the declaration of a class, attributes are represented by variables. Such variables are called instance variables. An instance variable is a variable modified with self. Instantiation: Create an instance of a class, a specific object of the class. Inheritance: that is, a derived class (derivedclass) inherits the base class (baseclass)

Function means function. It is a reusable code block with specific functions. It is one of the basic components of a program. It can accept input parameters, perform specific operations, and return results. Its purpose is to encapsulate a reusable block of code. code to improve code reusability and maintainability.

jQuery is a classic JavaScript library that is widely used in web development. It simplifies operations such as handling events, manipulating DOM elements, and performing animations on web pages. When using jQuery, you often encounter situations where you need to replace the class name of an element. This article will introduce some practical methods and specific code examples. 1. Use the removeClass() and addClass() methods jQuery provides the removeClass() method for deletion

Class is a keyword in Python, used to define a class. The method of defining a class: add a space after class and then add the class name; class name rules: capitalize the first letter. If there are multiple words, use camel case naming, such as [class Dog()].

Background Recently, key business codes have been encrypted for the company framework to prevent the engineering code from being easily restored through decompilation tools such as jd-gui. The configuration and use of the related obfuscation scheme are relatively complex and there are many problems for the springboot project, so the class files are encrypted and then passed The custom classloder is decrypted and loaded. This solution is not absolutely safe. It only increases the difficulty of decompilation. It prevents gentlemen but not villains. The overall encryption protection flow chart is shown in the figure below. Maven plug-in encryption uses custom maven plug-in to compile. The class file specified is encrypted, and the encrypted class file is copied to the specified path. Here, it is saved to resource/corecla.

When writing PHP code, using classes is a very common practice. By using classes, we can encapsulate related functions and data in a single unit, making the code clearer, easier to read, and easier to maintain. This article will introduce the usage of PHPClass in detail and provide specific code examples to help readers better understand how to apply classes to optimize code in actual projects. 1. Create and use classes In PHP, you can use the keyword class to define a class and define properties and methods in the class.

In this article, we will learn about enumerate() function and the purpose of “enumerate()” function in Python. What is the enumerate() function? Python's enumerate() function accepts a data collection as a parameter and returns an enumeration object. Enumeration objects are returned as key-value pairs. The key is the index corresponding to each item, and the value is the items. Syntax enumerate(iterable,start) Parameters iterable - The passed in data collection can be returned as an enumeration object, called iterablestart - As the name suggests, the starting index of the enumeration object is defined by start. if we ignore

Vue error: Unable to use v-bind to bind class and style correctly, how to solve it? In Vue development, we often use the v-bind instruction to dynamically bind class and style, but sometimes we may encounter some problems, such as being unable to correctly use v-bind to bind class and style. In this article, I will explain the cause of this problem and provide you with a solution. First, let’s understand the v-bind directive. v-bind is used to bind V
