1. Go to this page and download the library: Download zero-to-prod/data-model 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/ */
zero-to-prod / data-model example snippets
class User
{
use \Zerotoprod\DataModel\DataModel;
public string $name;
public int $age;
}
class Address
{
use \Zerotoprod\DataModel\DataModel;
public string $street;
public string $city;
}
class User
{
use \Zerotoprod\DataModel\DataModel;
public string $username;
public Address $address;
}
$user = User::from([
'username' => 'John Doe',
'address' => [
'street' => '123 Main St',
'city' => 'Hometown',
],
]);
echo $user->address->city; // Outputs: Hometown
#[\Zerotoprod\DataModel\Describe([
// Re-map a key to a property of a different name
'from' => 'key',
// Runs before 'cast'
'pre' => [MyClass::class, 'preHook']
// Targets the static method: `MyClass::methodName()`
'cast' => [MyClass::class, 'castMethod'],
// 'cast' => 'my_func', // alternately target a function
// Runs after 'cast' passing the resolved value as `$value`
'post' => [MyClass::class, 'postHook']
'
use Zerotoprod\DataModel\Describe;
class User
{
use \Zerotoprod\DataModel\DataModel;
#[Describe(['cast' => [self::class, 'firstName'], 'function' => 'strtoupper'])]
public string $first_name;
#[Describe(['cast' => 'uppercase'])]
public string $last_name;
#[Describe(['cast' => [self::class, 'fullName']])]
public string $full_name;
private static function firstName(mixed $value, array $context, ?\ReflectionAttribute $ReflectionAttribute, \ReflectionProperty $ReflectionProperty): string
{
return $ReflectionAttribute->getArguments()[0]['function']($value);
}
public static function fullName(mixed $value, array $context, ?\ReflectionAttribute $Attribute, \ReflectionProperty $Property): string
{
return "{$context['first_name']} {$context['last_name']}";
}
}
function uppercase(mixed $value, array $context){
return strtoupper($value);
}
$user = User::from([
'first_name' => 'Jane',
'last_name' => 'Doe',
]);
$user->first_name; // 'JANE'
$user->last_name; // 'DOE'
$user->full_name; // 'Jane Doe'
use Zerotoprod\DataModel\Describe;
class BaseClass
{
use \Zerotoprod\DataModel\DataModel;
#[Describe(['pre' => [self::class, 'pre'], 'message' => 'Value too large.'])]
public int $int;
public static function pre(mixed $value, array $context, ?\ReflectionAttribute $Attribute, \ReflectionProperty $Property): void
{
if ($value > 10) {
throw new \RuntimeException($Attribute->getArguments()[0]['message']);
}
}
}
use Zerotoprod\DataModel\Describe;
class BaseClass
{
use \Zerotoprod\DataModel\DataModel;
public const int = 'int';
#[Describe(['post' => [self::class, 'post'], 'message' => 'Value too large.'])]
public int $int;
public static function post(mixed $value, array $context, ?\ReflectionAttribute $Attribute, \ReflectionProperty $Property): void
{
if ($value > 10) {
throw new \RuntimeException($value.$Attribute->getArguments()[0]['message']);
}
}
}
use Zerotoprod\DataModel\Describe;
class User
{
use \Zerotoprod\DataModel\DataModel;
public string $first_name;
public string $last_name;
public string $fullName;
#[Describe('last_name')]
public function lastName(mixed $value, array $context, ?\ReflectionAttribute $Attribute, \ReflectionProperty $Property): string
{
return strtoupper($value);
}
#[Describe('fullName')]
public function fullName(mixed $value, array $context, ?\ReflectionAttribute $Attribute, \ReflectionProperty $Property): string
{
return "{$context['first_name']} {$context['last_name']}";
}
}
$user = User::from([
'first_name' => 'Jane',
'last_name' => 'Doe',
]);
$user->first_name; // 'Jane'
$user->last_name; // 'DOE'
$user->fullName; // 'Jane Doe'
use Zerotoprod\DataModel\Describe;
function uppercase(mixed $value, array $context){
return strtoupper($value);
}
#[Describe([
'cast' => [
'string' => 'uppercase',
\DateTimeImmutable::class => [self::class, 'toDateTimeImmutable'],
]
])]
class User
{
use \Zerotoprod\DataModel\DataModel;
public string $first_name;
public DateTimeImmutable $registered;
public static function toDateTimeImmutable(mixed $value, array $context): DateTimeImmutable
{
return new DateTimeImmutable($value);
}
}
$user = User::from([
'first_name' => 'Jane',
'registered' => '2015-10-04 17:24:43.000000',
]);
$user->first_name; // 'JANE'
$user->registered->format('l'); // 'Sunday'
use Zerotoprod\DataModel\Describe;
class User
{
use \Zerotoprod\DataModel\DataModel;
#[Describe(['']);
// Throws PropertyRequiredException exception: Property: username is
use Zerotoprod\DataModel\Describe;
class User
{
use \Zerotoprod\DataModel\DataModel;
#[Describe(['default' => 'N/A'])]
public string $username;
}
$user = User::from();
echo $user->username // 'N/A'
use Zerotoprod\DataModel\Describe;
#[Describe(['missing_as_null' => true])]
class User
{
use \Zerotoprod\DataModel\DataModel;
public ?string $name;
#[Describe(['missing_as_null' => true])]
public ?int $age;
}
$User = User::from();
echo $User->name; // null
echo $User->age; // null
use Zerotoprod\DataModel\Describe;
class User
{
use \Zerotoprod\DataModel\DataModel;
#[Describe(['from' => 'firstName'])]
public string $first_name;
}
$User = User::from([
'firstName' => 'John',
]);
echo $User->first_name; // John
use Zerotoprod\DataModel\Describe;
class User
{
use \Zerotoprod\DataModel\DataModel;
use \Zerotoprod\DataModelHelper\DataModelHelper;
/** @var Alias[] $Aliases */
#[Describe([
'cast' => [self::class, 'mapOf'], // Use the mapOf helper method
'type' => Alias::class, // Target type for each item
])]
public array $Aliases;
}
class Alias
{
use \Zerotoprod\DataModel\DataModel;
public string $name;
}
$User = User::from([
'Aliases' => [
['name' => 'John Doe'],
['name' => 'John Smith'],
]
]);
echo $User->Aliases[0]->name; // Outputs: John Doe
echo $User->Aliases[1]->name; // Outputs: John Smith
use Zerotoprod\DataModel\Describe;
class User
{
use \Zerotoprod\DataModel\DataModel;
use \Zerotoprod\DataModelHelper\DataModelHelper;
/** @var Collection<int, Alias> $Aliases */
#[Describe([
'cast' => [self::class, 'mapOf'],
'type' => Alias::class,
])]
public \Illuminate\Support\Collection $Aliases;
}
class Alias
{
use \Zerotoprod\DataModel\DataModel;
public string $name;
}
$User = User::from([
'Aliases' => [
['name' => 'John Doe'],
['name' => 'John Smith'],
]
]);
echo $User->Aliases->first()->name; // Outputs: John Doe
use Illuminate\Support\Facades\Validator;
use Zerotoprod\DataModel\Describe;
readonly class FullName
{
use \Zerotoprod\DataModel\DataModel;
#[Describe([
'pre' => [self::class, 'validate'],
'rule' => 'min:2'
])]
public string $first_name;
public static function validate(mixed $value, array $context, ?\ReflectionAttribute $Attribute): void
{
$validator = Validator::make(['value' => $value], ['value' => $Attribute?->getArguments()[0]['rule']]);
if ($validator->fails()) {
throw new \RuntimeException($validator->errors()->toJson());
}
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.