PHP Classes

PHP Hydrator Object: Inject values in object variables that are private

Recommend this page to a friend!
  Info   View files Example   View files View files (2)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 115 This week: 1All time: 9,555 This week: 560Up
Version License PHP version Categories
hydrator 1.0MIT/X Consortium ...5.4PHP 5, Language, Testing
Description 

Author

This class can Inject values in object variables that are private.

It takes an object of a given class and an array with property values and sets the object properties to the array values using reflection.

If the class properties are private, the class will make the reflection property object accessible, so the object values can be changed.

Picture of Aleksandar Zivanovic
  Performance   Level  
Name: Aleksandar Zivanovic <contact>
Classes: 16 packages by
Country: Serbia Serbia
Age: 30
All time rank: 16237 in Serbia Serbia
Week rank: 411 Up5 in Serbia Serbia Up
Innovation award
Innovation award
Nominee: 4x

Example

<?php

require_once 'Hydrator.php';

/**
 * Example object
 */
class UserEntity
{
   
/** @var string */
   
private $firstName;

   
/** @var string */
   
private $lastName;

   
/** @var string */
   
public function getDisplayName()
    {
        return
"{$this->firstName} {$this->lastName}";
    }
}

$user = Hydrator::hydrate(new UserEntity(), [
   
'first_name' => 'John',
   
'last_name' => 'Smith',
]);

var_dump($user->getDisplayName());


  Files folder image Files  
File Role Description
Accessible without login Plain text file example.php Example example script
Plain text file Hydrator.php Class class itself

 Version Control Unique User Downloads Download Rankings  
 0%
Total:115
This week:1
All time:9,555
This week:560Up