PHP code example of wossnap / amharic-transliteration
1. Go to this page and download the library: Download wossnap/amharic-transliteration 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/ */
wossnap / amharic-transliteration example snippets
use Wossnap\AmharicTransliteration\AmharicTransliterationService;
class WordController extends Controller
{
public function __construct(
private AmharicTransliterationService $transliterator
) {}
public function store(Request $request)
{
$transliterations = $this->transliterator->getSuggestedTransliterations(
$request->input('word')
);
}
}