samdark/hydrator 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

samdark/hydrator

最新稳定版本:1.0.5

Composer 安装命令:

composer require samdark/hydrator

包简介

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

README 文档

README

Hydrator can be used for two purposes:

  • To extract data from a class to be further stored in a persistent storage.
  • To fill an object with data or create a new instance of a class filled with data.

In both cases it is saving and filling protected and private properties without calling any methods which leads to ability to persist state of an object with properly encapsulated data.

Latest Stable Version Total Downloads Build Status

Installation

The preferred way to install this package is through composer.

composer require --prefer-dist samdark/hydrator 

Usage

Consider we have a Post entity which represents a blog post. It has a title and a text. A unique id is generated to identify it.

class Post { private $id; protected $title; protected $text; public function __construct($title, $text) { $this->id = uniqid('post_', true); $this->title = $title; $this->text = $text; } public function getId() { return $this->id; } public function getTitle() { return $this->title; } public function setTitle($title) { $this->title = $title; } public function getText() { return $this->text; } public function setText() { return $this->text; } } 

Saving a post to database:

$post = new Post('First post', 'Hell, it is a first post.'); $postHydrator = new \samdark\hydrator\Hydrator([ 'id' => 'id', 'title' => 'title', 'text' => 'text', ]); $data = $postHydrator->extract($post); save_to_database($data); 

Loading post from database:

<?php $data = load_from_database(); $postHydrator = new \samdark\hydrator\Hydrator([ 'id' => 'id', 'title' => 'title', 'text' => 'text', ]); $post = $postHydrator->hydrate($data, Post::class); echo $post->getId(); 

Filling existing post object with data:

$data = load_from_database(); $postHydrator = new \samdark\hydrator\Hydrator([ 'title' => 'title', 'text' => 'text', ]); $post = get_post(); $post = $postHydrator->hydrateInto($data, $post); echo $post->getTitle(); 

统计信息

  • 总下载量: 75.49k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 114
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 114
  • Watchers: 8
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固