Home  >  Article  >  Backend Development  >  How to implement object persistence layer in php

How to implement object persistence layer in php

PHPz
PHPzOriginal
2023-04-24 14:45:58489browse

Object-Relational Mapping (ORM) is an essential design pattern in modern software development. The core idea of ​​the ORM pattern is to map objects in the program to tables in the relational database, thereby achieving seamless integration between the program and the database. The implementation of the ORM pattern can utilize existing ORM frameworks, such as Hibernate, Django ORM, and Active Record in Ruby on Rails. However, in PHP, we can use native PHP code to implement the object persistence layer without requiring additional frameworks. This article will introduce how to implement the object persistence layer using native PHP code.

1. Basics of relational database

Before understanding how to use PHP to implement the object persistence layer, we need to first understand some basic concepts in relational databases.

1. Database table

Relational database is composed of many data tables. Each data table consists of one or more columns. Each column has a corresponding data type, such as integer, string, date, etc.

2. Primary key

Each data table needs to have a primary key. The primary key is a field that uniquely identifies each record in the table. The primary key must be unique and cannot be NULL.

3. Foreign keys

Foreign keys are used to establish relationships between two or more tables. Foreign keys define the association between one table and another table, allowing us to obtain information from the two tables and merge them through a joint query.

2. Use PDO to access the database

PDO (PHP Data Objects) is the standard way to access the database in PHP. We can use PDO to access various relational databases (such as MySQL, PostgreSQL, etc.) . Using PDO to operate the database can improve the portability of the program and increase the security of the program.

In PHP, we can use the PDO class to initialize a database connection. Among them, the parameters that the user needs to provide include database type, host name, database name, user name and password, etc. After initialization, we can use the PDO instance to execute SQL queries and process the query results.

The following is an example of using PDO to access the MySQL database:

<?php
try {
    $dbh = new PDO(&#39;mysql:host=localhost;dbname=test&#39;, $user, $pass);
    foreach($dbh->query('SELECT * from FOO') as $row) {
        print_r($row);
    }
    $dbh = null;
} catch (PDOException $e) {
    print "Error!: " . $e->getMessage() . "<br/>";
    die();
}
?>

Executing the above code will select the FOO table in MySQL and print the query results.

3. Use PHP to implement ORM mode

When implementing the ORM mode, we need to use PHP objects and classes to describe the tables and columns in the database. We need to define a corresponding class for each table and convert the columns in the table into attributes of the class. In order to implement the ORM mode, we also need to introduce a database access layer to operate the database and convert query results into PHP class objects. The following are development steps for using PHP to implement ORM mode:

1. Create a database connection MySQL

In PHP, we can use PDO to connect to the MySQL database. The following is a code example for opening a MySQL database connection:

<?php
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "myDBPDO";

try {
    $conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
    // set the PDO error mode to exception
    $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    echo "Connected successfully";
} catch(PDOException $e) {
    echo "Connection failed: " . $e->getMessage();
}
?>

In the above code, we create a connection to the MySQL database and set the error mode of PDO to exception mode. When using PDO, the exception mode allows us to more conveniently handle errors that may occur in the program.

2. Define ORM classes

In order to implement the ORM mode, we need to define the ORM class corresponding to the table and convert the columns in the table into attributes of the class. The following is a sample code for an ORM class:

<?php
class User {
    private $id;
    private $name;
    private $email;
    private $password;

    public function __construct($id, $name, $email, $password) {
        $this->id = $id;
        $this->name = $name;
        $this->email = $email;
        $this->password = $password;
    }

    public function getId() {
        return $this->id;
    }

    public function setId($id) {
        $this->id = $id;
    }

    public function getName() {
        return $this->name;
    }

    public function setName($name) {
        $this->name = $name;
    }

    public function getEmail() {
        return $this->email;
    }

    public function setEmail($email) {
        $this->email = $email;
    }

    public function getPassword() {
        return $this->password;
    }

    public function setPassword($password) {
        $this->password = $password;
    }
}
?>

In the above code, we create a User class and convert the id, name, email, and password columns in the table into attributes of the class. We also define the constructor of the class and a series of getter and setter methods.

3. Implement the ORM data access layer

In order to implement the ORM mode, we also need to implement a data access layer to operate the database. The following is a simple data access layer sample code:

<?php
class UserDAO {
    private $pdo;

    public function __construct(PDO $pdo) {
        $this->pdo = $pdo;
    }

    public function getUserById($id) {
        $stmt = $this->pdo->prepare('SELECT * FROM user WHERE id = :id');
        $stmt->execute(array('id' => $id));
        $data = $stmt->fetch();
        if ($data) {
            return new User($data['id'], $data['name'], $data['email'], $data['password']);
        }else{
            return null;
        }
    }

    public function saveUser(User $user) {
        if ($user->getId()) {
            // update
            $stmt = $this->pdo->prepare('UPDATE user SET name = :name, email = :email, password = :password WHERE id = :id');
            $stmt->execute(array('name' => $user->getName(), 'email' => $user->getEmail(), 'password' => $user->getPassword(), 'id' => $user->getId()));
        } else {
            // insert
            $stmt = $this->pdo->prepare('INSERT INTO user (name, email, password) VALUES (:name, :email, :password)');
            $stmt->execute(array('name' => $user->getName(), 'email' => $user->getEmail(), 'password' => $user->getPassword()));
            $user->setId($this->pdo->lastInsertId());
        }
    }

    public function deleteUser(User $user) {
        $stmt = $this->pdo->prepare('DELETE FROM user WHERE id = :id');
        $stmt->execute(array('id' => $user->getId()));
    }
}
?>

In the above code, we created a UserDAO class, which is used to operate the database and return User objects. The getUserById method in this class obtains user information with a specified id from the database, the saveUser method updates or inserts user information into the database, and the deleteUser method is used to delete user information.

4. Using ORM classes

After implementing the ORM mode, we can use ORM objects like ordinary objects without manually writing any SQL queries. Below is a sample code for an ORM class:

<?php
// create a new user
$user = new User(null, &#39;John Doe&#39;, &#39;john@example.com&#39;, &#39;password&#39;);
$userDAO = new UserDAO($pdo);
$userDAO->saveUser($user);

// find a user by id
$user = $userDAO->getUserById(1);

// update a user's name
$user->setName('Jane Doe');
$userDAO->saveUser($user);

// delete a user
$userDAO->deleteUser($user);
?>

In the above code, we create a new user and insert the user into the database. Then, we use the getUserById method to find the user information with ID 1. We can update that user's name using the setter method and then save the changes to the database using the saveUser method. Finally, we delete the user using the deleteUser method.

Conclusion

In this article, we introduced how to implement the object persistence layer pattern using PHP. First, we learned the basics of relational databases, and then took a deeper look at PHP's use of PDO to connect to the database. By understanding the relational database and PDO connection methods, we can manually implement the ORM mode ourselves. By defining ORM classes and data access layers, we can seamlessly integrate database operations into our PHP code. The use of ORM mode can simplify our code to a great extent and handle database operations more conveniently.

The above is the detailed content of How to implement object persistence layer in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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