Home Backend Development PHP Tutorial Introduction to the application of factory pattern in Zend Framework_PHP tutorial

Introduction to the application of factory pattern in Zend Framework_PHP tutorial

Jul 21, 2016 pm 03:17 PM
framework zend one introduce exist definition factory application Quote us concept model first

First, let’s quote some concepts:
Factory pattern: specifically define a class to be responsible for creating instances of other classes. The created instances usually have the same parent class. The factory pattern is a class creation pattern that usually returns instances of different classes based on different independent variables.
The essence of the factory pattern is that a factory class dynamically determines which product instance should be created based on the incoming parameters. The factory pattern involves factory roles, abstract product roles and specific product roles.
Factory (Creator) role: It is the core of the factory pattern. It is responsible for implementing the internal logic of creating all instances. The factory class can be called directly by the outside world to create the required product objects.
Abstract product (Product) role: It is the parent class of all objects created by the factory pattern. It is responsible for describing the public interface common to all instances.
Concrete Product role: It is the creation target of the factory pattern. All objects are instances of a specific class that plays this role.
zend_db in ZF is a good example of factory pattern.
The analysis begins next. . . . . .
When configuring zf, we can put the database connection operation information in the Bootstrap.php file

Copy the code The code is as follows:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
function __construct($app){
parent::__construct($app);
$url=constant( 'APPLICATION_PATH').DIRECTORY_SEPARATOR.'configs'.DIRECTORY_SEPARATOR.'config.ini';
$dbconfig=new Zend_Config_Ini($url,null,true);
$db=Zend_Db::factory($dbconfig- >general->db->adapter,$dbconfig->general->db->params->toArray());
// var_dump($db);
$db ->query('SET NAMES UTF8');
Zend_Db_Table::setDefaultAdapter($db);
}
}
?>

In the entry file At , when bootstrap() is called through a Zend_Application object, the constructor of the Bootstrap class will be called.
In the constructor, through Zend_Db::factory() we can get an object instance for operating the database.
Read the relevant information in config.ini through a Zend_Config_Ini instance and pass it as a parameter to the factory function Zend_Db::factory()
Configuration.ini information
[general]
db.adapter =PDO_MYSQL
db.params.host =localhost
db.params.username =root
db.params.password =
db.params.dbname = database name
Zend_Db::factory()
Parameter one: Indicates the type of database to be operated, such as PDO_MYSQL
Parameter two: Indicates the information to connect to the database, including server name, user name, password, and the database to be connected

Throw out first Two questions:
①If the database we want to operate is MSSQL, what should we do
②Here we use Zend_Db::factory(), if we use the traditional method, how should we do it

Answer:
① We only need to modify PDO_MYSQL to PDO_MSSQL in the config.ini file
② Create an object instance for operating the database in the traditional way:
$db=new Zend_Db_Adapter_Pdo_Mysql($ config)
Among them: $config information is read from config.ini
Here comes the problem: If we use the traditional method to create an object instance, we must have a process to determine the type of database we currently want to operate. ?
For example:
Copy code The code is as follows:

switch ($dbType){
case 'PDO_MYSQL' :
....
case 'PDO_MSSQL':
....
case 'PDO_SQLITE':
....
}

We still have to write different statements for operating the database according to different database types, which is very troublesome
However, zf has already done all of this for us through the factory mode, and it is very convenient to use

How to implement factory mode in Zf?
First of all, there must be an abstract base class: Zend_Db_Adapter_Abstract. This class is the parent class of all objects created by the factory pattern. It is responsible for providing the interface common to all instances.
This class not only provides some implementation methods that we are very familiar with operating databases, such as: select, update, insert, delete, query, fetchRow, fetchAssoc; in addition, it also provides some interfaces for implementation in subclasses , such as: limit, getServerVersion, closeConnection, describeTable, etc.
Copy code The code is as follows:

abstract class Zend_Db_Adapter_Abstract
{
//..
}
abstract class Zend_Db_Adapter_Pdo_Abstract extends Zend_Db_Adapter_Abstract
{
//..
}
class Zend_Db_Adapter_Pdo_Mysql extends Zend_Db_Adapter_Pdo_Abstract
{
//...Implement operations for Mysql database
}
class Zend_Db_Adapter_Pdo_Mssql extends Zend_Db_Adapter_Pdo_Abstract
{
//....Implement operations for Mssql database Operations
}
class Zend_Db_Adapter_Pdo_Sqlite extends Zend_Db_Adapter_Pdo_Abstract
{
//.... Implement operations for Sqlite database
}

The above relationship can be used This picture shows it simply


Next, let’s track how Zend_Db::Factory() selects different databases based on different parameters.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/325673.htmlTechArticleFirst we quote some concepts: Factory pattern: specifically define a class to be responsible for creating instances of other classes, which are created Instances usually have the same parent class. Factory pattern belongs to class creation...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The role and practical application of arrow symbols in PHP The role and practical application of arrow symbols in PHP Mar 22, 2024 am 11:30 AM

The role and practical application of arrow symbols in PHP In PHP, the arrow symbol (->) is usually used to access the properties and methods of objects. Objects are one of the basic concepts of object-oriented programming (OOP) in PHP. In actual development, arrow symbols play an important role in operating objects. This article will introduce the role and practical application of arrow symbols, and provide specific code examples to help readers better understand. 1. The role of the arrow symbol to access the properties of an object. The arrow symbol can be used to access the properties of an object. When we instantiate a pair

How to Undo Delete from Home Screen in iPhone How to Undo Delete from Home Screen in iPhone Apr 17, 2024 pm 07:37 PM

Deleted something important from your home screen and trying to get it back? You can put app icons back on the screen in a variety of ways. We have discussed all the methods you can follow and put the app icon back on the home screen. How to Undo Remove from Home Screen in iPhone As we mentioned before, there are several ways to restore this change on iPhone. Method 1 – Replace App Icon in App Library You can place an app icon on your home screen directly from the App Library. Step 1 – Swipe sideways to find all apps in the app library. Step 2 – Find the app icon you deleted earlier. Step 3 – Simply drag the app icon from the main library to the correct location on the home screen. This is the application diagram

Do Not Disturb Mode Not Working in iPhone: Fix Do Not Disturb Mode Not Working in iPhone: Fix Apr 24, 2024 pm 04:50 PM

Even answering calls in Do Not Disturb mode can be a very annoying experience. As the name suggests, Do Not Disturb mode turns off all incoming call notifications and alerts from emails, messages, etc. You can follow these solution sets to fix it. Fix 1 – Enable Focus Mode Enable focus mode on your phone. Step 1 – Swipe down from the top to access Control Center. Step 2 – Next, enable “Focus Mode” on your phone. Focus Mode enables Do Not Disturb mode on your phone. It won't cause any incoming call alerts to appear on your phone. Fix 2 – Change Focus Mode Settings If there are some issues in the focus mode settings, you should fix them. Step 1 – Open your iPhone settings window. Step 2 – Next, turn on the Focus mode settings

From beginner to proficient: Explore various application scenarios of Linux tee command From beginner to proficient: Explore various application scenarios of Linux tee command Mar 20, 2024 am 10:00 AM

The Linuxtee command is a very useful command line tool that can write output to a file or send output to another command without affecting existing output. In this article, we will explore in depth the various application scenarios of the Linuxtee command, from entry to proficiency. 1. Basic usage First, let’s take a look at the basic usage of the tee command. The syntax of tee command is as follows: tee[OPTION]...[FILE]...This command will read data from standard input and save the data to

Introduction to the skills and attributes of Hua Yishan Heart of the Moon Lu Shu Introduction to the skills and attributes of Hua Yishan Heart of the Moon Lu Shu Mar 23, 2024 pm 05:30 PM

In Hua Yishan Heart Moon, Lu Shu is an SSR celebrity. He is positioned as a single-target backline player and has a very impressive critical hit rate. Many players don’t know much about Lu Shu. Here’s what I’ve brought you. Come and take a look at the introduction to the skills and attributes of Hua Yishan Heart of the Moon Lu Shu. Celebrity Attributes Celebrity Skills 1. Lu Ming Shuzhong Skill Description: Lu Shu was born in Qiongqihui in Shuzhong. He has practiced martial arts since he was a child and has outstanding martial arts skills. Causes basic attack damage equal to 100% of the enemy's back row attack power, and reduces the target's rage by 10 points. Skill attributes: Level 2: Basic attack damage increased to 105%. Level 2: Basic attack damage is increased to 110%, and the target's rage is reduced by 15 points. Level 2: Basic attack damage increased to 115%. Level 2: Basic attack damage is increased to 120%, and the target's rage is reduced by 20 points. Level 2: Basic attack

Introduction to PHP interfaces and how to define them Introduction to PHP interfaces and how to define them Mar 23, 2024 am 09:00 AM

Introduction to PHP interface and how it is defined. PHP is an open source scripting language widely used in Web development. It is flexible, simple, and powerful. In PHP, an interface is a tool that defines common methods between multiple classes, achieving polymorphism and making code more flexible and reusable. This article will introduce the concept of PHP interfaces and how to define them, and provide specific code examples to demonstrate their usage. 1. PHP interface concept Interface plays an important role in object-oriented programming, defining the class application

What are the benefits of C++ functions returning reference types? What are the benefits of C++ functions returning reference types? Apr 20, 2024 pm 09:12 PM

The benefits of functions returning reference types in C++ include: Performance improvements: Passing by reference avoids object copying, thus saving memory and time. Direct modification: The caller can directly modify the returned reference object without reassigning it. Code simplicity: Passing by reference simplifies the code and requires no additional assignment operations.

Detailed introduction of Samsung S24ai functions Detailed introduction of Samsung S24ai functions Jun 24, 2024 am 11:18 AM

2024 is the first year of AI mobile phones. More and more mobile phones integrate multiple AI functions. Empowered by AI smart technology, our mobile phones can be used more efficiently and conveniently. Recently, the Galaxy S24 series released at the beginning of the year has once again improved its generative AI experience. Let’s take a look at the detailed function introduction below. 1. Generative AI deeply empowers Samsung Galaxy S24 series, which is empowered by Galaxy AI and brings many intelligent applications. These functions are deeply integrated with Samsung One UI6.1, allowing users to have a convenient intelligent experience at any time, significantly improving the performance of mobile phones. Efficiency and convenience of use. The instant search function pioneered by the Galaxy S24 series is one of the highlights. Users only need to press and hold

See all articles