Generate random fitting fake data with Faker

Code
<?php

use Faker\Factory;

$faker Factory::create('it_IT');

dump(
    
// name and address from locale
    
$faker->name,
    
$faker->address,
    
$faker->dateTime,
    
// with optional(), it may return null
    
$faker->optional(0.5null)->colorName
);

echo 
sprintf(
    
'<img src="%s">',
    
$faker->imageUrl(320240'animals')
);
Result
^ "Anselmo Rizzi"

^ """
Incrocio Pericle 30\n
Sesto Mariapia, 07958 Cuneo (CB)
"""

^ DateTime @1420333857 {#1412
date: 2015-01-04 02:10:57.0 Europe/Berlin (+01:00)
}

^ null

Used Versions
PHP 8.2, Laminas MVC 3.2, Symfony 5.2, Laravel 8.28, PHPUnit 9.5, Doctrine ORM 2.8