1. Go to this page and download the library: Download jundayw/bip39-sdk-php 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/ */
jundayw / bip39-sdk-php example snippets
use Jundayw\Bip39\WordList;
// locale etc:en|fr|it|zh|ja|ko|es
$wordList = new WordList();
// get the word for a index
echo "WordList 1: index=999 : " . $wordList->getWord(999) . PHP_EOL;
echo PHP_EOL;
// get the index for the word
echo "WordList 2: word=language : " . $wordList->getIndex('language') . PHP_EOL;
echo PHP_EOL;