PHP code example of bilalbentoumi / fakerphp-dz
1. Go to this page and download the library: Download bilalbentoumi/fakerphp-dz 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/ */
bilalbentoumi / fakerphp-dz example snippets
$faker = Faker\Factory::create();
$faker->addProvider(new BilalBentoumi\Faker\Provider\ar_DZ\Person($faker));
echo $faker->name();
// 'فريد شيباني'
echo $faker->firstName();
// 'أسامة'
echo $faker->firstName('female');
// 'نسرين'
echo $faker->lastName();
// 'بلحاج'
$faker = Faker\Factory::create();
$faker->addProvider(new BilalBentoumi\Faker\Provider\fr_DZ\Person($faker));
echo $faker->name();
// 'Yousra Kadi'
echo $faker->firstName();
// 'Mouloud'
echo $faker->firstName('female');
// 'Asma'
echo $faker->lastName();
// 'Boumediene'