Analyze the data object ing mode in php design mode, and analyze the design mode. Analysis of the data object ing mode in the php design mode, analysis of the design mode in php there are many different models, here we will introduce you to a non-commonly used data ING analysis of the data object ing mode in the php design mode.
There are many different design modes in php. here we will introduce you to an uncommon data ing mode. I hope this article will help you.
The data ing mode allows you to better organize your applications to interact with databases.
The data ing mode reduces the combination density between object attributes and the table fields that store them. The essence of the data ing mode is a class, which maps or translates the attributes of the class or the corresponding fields from the method to the database, and vice versa.
The role of data ING is to be able to understand the information presented by both parties, and to control the access to information, such as based on the information stored in the data table
Re-create a domain object or update or delete related data in the data table using the information of the domain object.
There are multiple ways to store the ing between object-oriented code and database tables and fields. One possible method is to manually encode the ing relationship and store it in the data ing class.
Another optional method is to use the PHP array and encode it as the class itself. This class can also from external sources, such as INI or XML files.
The data object ing mode maps objects and data storage. operations on an object are mapped to operations on data storage.
Implement the data object ing mode in the code, implement an ORM class, and map complex SQL statements into object attributes. Object Relational ING (ORM)
Ha_cl table
Hacl. php
<?phpnamespace Baobab;class Hacl{public $id;public $haclname;public $haclcode;public $hacls;protected $db;function __construct($id){$this->db = new \Baobab\Database\Mysqli();$this->db->connect('127.0.0.1', 'root', '', 'test');$res = $this->db->query("select * from ha_cl where id = {$id}");$data = $res->fetch_assoc();$this->id = $data['ID'];$this->haclname = $data['ha_cl_name'];$this->haclcode = $data['ha_cl_code'];$this->hacls = $data['hacls'];}function __destruct(){$this->db->query("update ha_cl setha_cl_code = '{$this->haclcode}',ha_cl_name = '{$this->haclname}',hacls = '{$this->hacls}'where ID = {$this->id}limit 1");}}
Factory. php
<? Phpnamespace Baobab; class Factory {static function getHacl ($ id) {$ key = 'User _'. $ id; $ user = \ Baobab \ Register: get ($ key); // different table IDs indicate different objects if (! $ User) {$ user = new \ Baobab \ Hacl ($ id); \ Baobab \ Register: set ($ key, $ user);} return $ user ;}}
Register. php
<?phpnamespace Baobab;class Register{protected static $objects;static function set($alias, $object){self::$objects[$alias] = $object;}static function _unset($alias) {unset(self::$objects[$alias]);}static function get($name) {return self::$objects[$name];}}
Index. php
Class Page {function index () {$ hacl = Baobab \ Factory: getHacl (13); $ hacl-> haclname = 'Test name'; $ this-> test (); echo 'OK';} function test () {$ hacl = Baobab \ Factory: getHacl (13); $ hacl-> hacls = 'Test content ';}} $ page = new Page (); $ page-> index ();
In factory mode, object Hacl is created multiple times, which wastes resources. If an object is passed as a parameter, on the one hand, additional costs are incurred, in addition, if this object is used in many places, errors may easily occur. Therefore, use the registration tree mode in Factory mode to solve this problem.
The above content introduces the data object ing mode of the php design mode. I hope it will be helpful to you!
Articles you may be interested in:
- PHP 5 data object (PDO) abstraction layer and Oracle
- Answer several questions in PHPCHINA: URL ing
- Module and Operation ING for decryption of ThinkPHP3.1.2
- Ing between common function paths and configuration item paths in ThinkPHP
- Describes how to use Eloquent object ing in the Laravel framework of PHP.
There are many different modes in the design pattern of php. here we will introduce you to an uncommon data ing...