PHP code example of odan / hydrator
1. Go to this page and download the library: Download odan/hydrator library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
odan / hydrator example snippets
// User entity
class User
{
public $id;
public $username;
public $firstName;
public $email;
}
// A row from the database
$userRow = [
'id' => 1,
'username' => 'admin',
'first_name' => 'John Doe',
'email' => '[email protected]'
];
// Create the hydrator
$hydrator = new \Odan\Hydrator\ObjectProperty();
// Convert array to a new User object (with lower camel case properties)
$user = $hydrator->hydrate($userRow, new User());
print_r($user);
/*
User Object
(
[id] => 1
[username] => admin
[firstName] => John Doe
[email] => [email protected]
)
*/
// Convert User object to an array with lower camel case keys
$array = $hydrator->extract($user);
print_r($array);
/*
Array
(
[id] => 1
[username] => admin
[first_name] => John Doe
[email] => [email protected]
)
*/