文件名称:contain:快速轻量级的 PHP 实体模型框架,无需 ORM
文件大小:85KB
文件格式:ZIP
更新时间:2024-06-18 08:41:48
PHP
包含 PHP 实体模型 为 PHP 编译的轻量级实体模型。 没有 ORM 的类型验证、数据封装、过滤和验证。 实体模型 实体模型是用于描述应用程序中某些内容的一条或多条数据的容器。 例如,一个用户模型可以描述为: $user = array( 'firstName' => 'Andrew', 'lastName' => 'Kandels', ); 假设您开发了一项服务来创建用户。 有两种常见的方法可以将您的模型传递给该服务。 传递数组 class Service { public function addUser(array $data) { ... } } $service->addUser($user); 这种方法的问题在于addUser方法只能保证接收数据数组。 它可以传递一个空数组,一个数据有拼写错误的数组(firstName
【文件预览】:
contain-master
----src()
--------Contain()
----scripts()
--------abstract-script.php(3KB)
--------compile-modules(6KB)
--------compile-recursive(3KB)
--------compile-namespace(1KB)
--------compile-directory(2KB)
--------compile-contain(2KB)
----phpunit.xml.dist(455B)
----README.md(3KB)
----tests()
--------log()
--------Performance()
--------performance.php(398B)
--------ContainTest()
----.gitignore(22B)
----composer.json(1KB)