PHP 存储库

WBOY
发布: 2024-08-29 12:35:30
原创
549 人浏览过

存储库一般来说负责处理数据源操作。存储库为我们提供了一种集中的方式来管理与数据库相关的操作,增加了代码的可读性,并且可以在发生异常时轻松跟踪异常。它还帮助我们将代码与领域层解耦。它可以是分隔域和数据库操作的接口、组件或类。在本主题中,我们将了解 PHP 存储库。

广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

语法

在其中,我们可以定义更相同的数据库操作,负责从数据库中获取数据、更新数据和删除数据。我们如何定义这一点请参见下文;

interface name_oF_interface
{
// logic goes here. Can define the methods which are needed to haled the db operations
}
登录后复制

在上面的语法中,我们定义了一个包含不同方法的接口。该接口关键字后面是我们想要提供的接口的名称。让我们看一种练习语法,以便更好地理解语法,如下所示;

interface DemoInteface
{
public function cerate(Object $obj);
public function delete($id);
public function update(Object $obj);
//many more methods we can define here.
// but we need to provide their implementation as well in the class which is using this repo.
}
登录后复制

在上面的语法中,我们定义了新的数据库操作方法,我们将在不同的类中提供它们的实现。

存储库在 PHP 中如何工作?

到目前为止,我们知道存储库用于处理数据库操作。所以现在我们可以说它像任何其他语言一样充当数据层和域对象之间的层。它带来了很多好处,因为它为我们提供了数据操作的集中管理。此外,存储库还帮助我们处理实体;我们可以获取这些实体并将它们加载到域对象中。我们也可以更改这些实体。

使用存储库执行的基本操作如下;

1.我们可以从数据库中获取实体并将它们存储在内存中,或者我们可以将这些实体对象转换为领域对象以便更好地修改,因为始终建议不要直接修改实体对象。

2.从数据库中获取后,我们可以更新这些对象并将它们发送到仅使用存储库保存到数据库中。整个过程可以通过使用事务来完成。如果在进行数据库交互时出现任何异常,我们可以回滚整个事务。

3.我们可以轻松处理异常,因为所有异常只会在持久层出现。

当我们使用存储库模式时,我们有很多层,处理得非常正确。例如,我们有不同的层,例如:

  • 表示层
  • 服务层
  • 业务层
  • 数据访问层

现在我们将举一个例子,我们将根据它们定义一些类和存储库,并尝试了解它们实际上是如何工作的。另外,我们将看到存储库的流程,如下所示;

假设我们要反对这里一个是Buyer,另一个是Order。该订单将包括买家数据和其他信息,例如我们希望送货的地址、订单名称等。所以我们将其分为三层,如下所述;

1。域层:我们将创建所有可用类的域对象。在我们的示例中,它是 Buyer an Order 类。这两个类都将属于存储库模式的域层。我们将使用这些对象来保存数据库中的数据。

2。持久层:这个持久层就是我们可以说的存储库。在此级别,只有我们创建存储库,它将再次与数据库交互。但为此,我们将创建一个接口,其中包含处理买家和订单之间的操作所需的所有方法。该层还将帮助我们跟踪异常,并且它们将仅属于持久层。

课程:

买家类

class Buyer
{
public $id;
public $gender;
public $email;
public $firstName;
public $lastName;
}
登录后复制

订单类

class Order
{
public $id;
public $order_name;
public $order_description;
public $amount;
public $quantity;
public $buyerid;
}
登录后复制

存储库:

inteface OrderRepo {
// we can define our methods here according to requirement.
}
登录后复制

正如您在上面的逻辑中看到的,我们正在处理不同的层。这就是 PHP 中存储库模式的工作原理。它与其他语言非常相似。

PHP 存储库示例

在此示例中,我们将创建一个存储库来调用不同的方法。但到目前为止,我们这里还没有使用 db。因此,我们将在调用 Repository 的方法后打印消息。

员工类别:

class Employee
{
public $id;
public $emp_first_name;
public $emp_last_name;
public $gender;
public $email;
public $city;
}
interface EmployeeRepo {
public function findById($id);
public function create(Employee $emp);
public function delete(Employee $emp);
public function update(Employee $emp);
}
登录后复制

Repository implementations for the employee :

class SQLEmployeeRepo implements EmployeeRepo
{
public function create(Employee $emp)
{
print("saving employee data here !!");
}
public function findById($id)
{
print("finding employee data here !!");
}
public function delete(Employee $emp)
{
print("deleting employee data here !!");
}
public function update(Employee $emp)
{
print("updating employee data here !!");
}
}
登录后复制

Employee Controller class:

class EmployeeControllerDemo
{
public function create(EmployeeRepo $repo)
{
$emp = new Employee;
$user->emp_first_name = $_POST['emp_first_name'];
$user->emp_last_name = $_POST['emp_last_name'];
$user->city = $_POST['city'];
$repo->create($user);
// here we are creating emp object and calling creae method.
}
}
登录后复制

Output :

PHP 存储库

Conclusion

The repository makes our code centralized, more readable, maintainable, and easy to understand. By using the repository, we can easily track the exception and errors if they occurred at the repository level while interacting with the database. It also helps us to decouple our code with less dependency on each other. It acts as a thin layer between the db and persistence layer; some called it part of persistence only.

以上是PHP 存储库的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
php
来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板