PHP code example of orisai / nette-object-mapper
1. Go to this page and download the library: Download orisai/nette-object-mapper 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' );
orisai / nette-object-mapper example snippets
use Orisai \ObjectMapper \MappedObject ;
use Orisai \ObjectMapper \Rules \MappedObjectValue ;
use Orisai \ObjectMapper \Rules \StringValue ;
final class UserInput implements MappedObject
{
public string $firstName;
public string $lastName;
public UserAddressInput $address;
}
use Orisai \ObjectMapper \MappedObject ;
use Orisai \ObjectMapper \Rules \StringValue ;
final class UserAddressInput implements MappedObject
{
public string $street;
}
use Orisai \ObjectMapper \Exception \InvalidData ;
use Orisai \ObjectMapper \Printers \ErrorVisualPrinter ;
use Orisai \ObjectMapper \Printers \TypeToStringConverter ;
use Orisai \ObjectMapper \Processing \Processor ;
$processor = $container->getByType(Processor::class);
$errorPrinter = new ErrorVisualPrinter(new TypeToStringConverter());
$data = [
'firstName' => 'Tony' ,
'lastName' => 'Stark' ,
'address' => [
'street' => '10880 Malibu Point' ,
],
];
try {
$user = $processor->process($data, UserInput::class);
} catch (InvalidData $exception) {
$error = $errorPrinter->printError($exception);
throw new Exception ("Validation failed due to following error:\n$error" );
}
echo "User name is: {$user->firstName} {$user->lastName}" ;