PHP code example of easifyphp / bmi

1. Go to this page and download the library: Download easifyphp/bmi 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/ */

    

easifyphp / bmi example snippets


$faker = Faker\Factory::create();

$name = $faker->name();

use JetBrains\PhpStorm\ArrayShape;

#[ArrayShape(['id' => 'int', 'name' => 'string'])]
function getEntityData(): array
{
    // ...
}

dump($data);