PHP code example of nonegrame / faker-provider-animals
1. Go to this page and download the library: Download nonegrame/faker-provider-animals 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/ */
nonegrame / faker-provider-animals example snippets
$faker = new Faker\Generator();
// 動物 faker
$faker->addProvider(new \FakerProviderAnimals\Animals($faker));
// 形容動作 faker
$faker->addProvider(new \FakerProviderAnimals\Actions($faker));
echo $faker->action() . $faker->animal();