


Activity startup mode PHP singleton mode combined with command chain mode instructions
Maybe for some people, the content of the article is too simple. This is a tutorial for beginners. Because time is tight (I have to go shopping with my wife, haha), there are irregularities in design, irregularity in code writing, bugs, etc. I hope all the heroes will point it out so that we can make progress together. My level is limited. ^_^
I believe that everyone has read many books or articles about applying design patterns in PHP, but few of them directly give examples. , after reading most of them, I feel confused. Without project practice, it is difficult to figure out the design pattern part.
In order to avoid the code being too complex, exception handling and other contents are not added.
Single-piece mode and command chain mode For the basic knowledge, you can google it yourself. I won’t go into details. Let’s look at the example directly:
Copy the code The code is as follows:
/*
*@author:NoAngels
*@time :August 30, 2008
*/
interface IRunAction{
//Get the methods defined in the class that can be run in the APP
static function LoadActions();
//The entry function in the class calls other functions in the class Use
function runAction($action, $args);
}
/*
*The core part of APP class system
*/
class APP{
static private $__instance = null;
static private $__commands = array();
static private $__flag = 1;
private function __construct(){}
//Singleware mode design obtains the only instance of this class
static function Load(){
if(self::$__instance == null) self: :$__instance = new APP;
return self::$__instance;
}
//Add naming to $__instance of APP. Every time you add a new command, check whether an instance of this class has been added before
//If If there is, ignore the operation. If not, add it.
public function addCommand($cmdName){
foreach(self::$__commands as $cmd){
if(strtolower(get_class($cmd)) == strtolower(get_class($cmdName) ))){
self::$__flag = 0;
break;
}
}
if(self::$__flag == 1) self::$__commands[] = $cmdName;
self::$__flag = 1;
}
//The core part of the command chain pattern design calls the entry function of the instance
//First check whether the call to the operation is allowed in the class. If not, it will prompt an undefined operation to exit.
public function runCommand($action, $args ){
self::$__flag = 0;
foreach(self::$__commands as $cmd){
if(in_array($action, $cmd->LoadActions())){
self::$__flag = 1;
$cmd->runAction($action, $args);
}
}
if(self::$__flag == 0){
self::$__flag = 1;
exit("undefined action by action : $action");
}
}
//To delete an instance of a class, just specify the name of the class
public function removeCommand($className){
foreach(self::$__commands as $key=> ;$cmd){
if(strtolower(get_class($cmd)) == strtolower($className)){
unset(self::$__commands[$key]);
}
}
}
//For everyone Test to see if the addition and deletion are successful
public function viewCommands(){
echo(count(self::$__commands));
}
}
//Class User implements interface IRunAction
class User implements IRunAction{
// Define callable operations
static private $__actions = array('addUser', 'modifyUser', 'removeUser');
//Get the callable operations, don't directly love you in the actual process. $__actions is designed as a public call
//Instead, design a LoadActions function to get the value of $__actions
static public function LoadActions(){
return self::$__actions;
}
//Run the specified function
public function runAction($action, $args){
//If you don’t understand how to use this function, please refer to the manual
call_user_func(array($this,$action), $args);
}
//Just a test function
protected function addUser($name){
echo($name ; self::$__actions;
}
public function runAction($action, $args){
call_user_func(array($this,$action), $args);
}
protected function addTest($name){
echo( $name);
}
}
//The following is the test code
APP::Load()->addCommand(new User);
APP::Load()->addCommand(new User);
APP: :Load()->addCommand(new User);
APP::Load()->addCommand(new User);
APP::Load()->runCommand('addUser', 'NoAngels');
APP::Load()->addCommand(new Test);
APP::Load()->runCommand('addTest', null);
The APP class is designed using the singleton model, which is the core part of the system. I believe you will know by looking at the code that the Load method is to load the APP class instance, which is equivalent to the getInstance static method in some books. It has addCommand, runCommand, and removeCommand. A public method. runCommand is the core part. It is also the core startup program of the command chain mode. Please see the source code for the specific implementation. The code is already very clear, so I won’t go into details here.
Classes User and Test implement the interface IRunAction, which Both classes define a static private variable $__actions, which is an array, which contains operations that can be called by the APP's runCommand function.
The following is the running process of the system:
APP starts
------- addCommand, add the class to which the operation to be run belongs to the APP. If the added class is designed using the singleton mode, you can add addCommand(SingletonClass::Load()) as follows. Otherwise, you can adjust it as follows
addCommand(new someClass)
-------runCommand. Run operations. For example, there is an operation addUser in the User class. I can directly enable runCommand($acttion, $args). Loop through the $__commands array in the APP. If one of the classes If the instance has this operation, call the runAction function of the instance. If you do not add an instance of a certain class using addCommand, it will prompt an undefined operation and exit.
The runAction in class User and class Test calls call_user_func. The function used. Call the corresponding function in the class.
Tips: This is the explanation and examples. How you understand it and how to use this idea depends on your own understanding. You must do everything yourself. ( ps: It can be made into a single entry file in the framework. Whether to implement MVC or not depends on what you think.)
The actual operation effect is as follows:
Limited to Chinese language level, if you don’t understand anything, please contact me.
I will write some articles for you when I have time later.
The above introduces the Activity startup mode, PHP singleton mode and command chain mode usage instructions, including the Activity startup mode. 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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











JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

The enumeration function in PHP8.1 enhances the clarity and type safety of the code by defining named constants. 1) Enumerations can be integers, strings or objects, improving code readability and type safety. 2) Enumeration is based on class and supports object-oriented features such as traversal and reflection. 3) Enumeration can be used for comparison and assignment to ensure type safety. 4) Enumeration supports adding methods to implement complex logic. 5) Strict type checking and error handling can avoid common errors. 6) Enumeration reduces magic value and improves maintainability, but pay attention to performance optimization.

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

RESTAPI design principles include resource definition, URI design, HTTP method usage, status code usage, version control, and HATEOAS. 1. Resources should be represented by nouns and maintained at a hierarchy. 2. HTTP methods should conform to their semantics, such as GET is used to obtain resources. 3. The status code should be used correctly, such as 404 means that the resource does not exist. 4. Version control can be implemented through URI or header. 5. HATEOAS boots client operations through links in response.

In PHP, exception handling is achieved through the try, catch, finally, and throw keywords. 1) The try block surrounds the code that may throw exceptions; 2) The catch block handles exceptions; 3) Finally block ensures that the code is always executed; 4) throw is used to manually throw exceptions. These mechanisms help improve the robustness and maintainability of your code.

The main function of anonymous classes in PHP is to create one-time objects. 1. Anonymous classes allow classes without names to be directly defined in the code, which is suitable for temporary requirements. 2. They can inherit classes or implement interfaces to increase flexibility. 3. Pay attention to performance and code readability when using it, and avoid repeatedly defining the same anonymous classes.
