cwin / cwin-app
PHP library for check spelling Indonesian language (Bahasa Indonesia)
dev-master
2023-11-18 13:08 UTC
Requires (Dev)
This package is not auto-updated.
Last update: 2024-10-30 19:04:36 UTC
README
Cwin (Correct Word Indonesian)
Author
Muhamad Ridwan ridwanskaterocks@gmail.com
Spelling
Contohnya:
- indonesa => indonesia
- mrdeka => merdeka
- negri => negeri
- membagun => membangun
Contoh kasus
Dalam penulisan kata kadangkala tidak pernah tertinggal dari typo atau salah ejaan untuk menghindari ketidaksesuaian dalam penulisan diperlukan pengecekan otomatis yang di lakukan untuk koreksi kata (check spelling), dan akan menampilkan suggestion kata yang dimaksud
Instalasi
$ composer require cwin/cwin-app dev-master
Penggunaan
Copy kode berikut di directory project anda. Lalu jalankan file tersebut.
<?php require_once __DIR__ . '/vendor/autoload.php'; use Cwin\BasicWord\WordProcessing\Source\Indonesia\WordFactoryIndonesia; use Cwin\BasicWord\WordProcessing\Source\English\WordFactoryEnglish; $wordSpelling = new Cwin\BasicWord\WordSpelling(new WordFactoryIndonesia); $suggestion = new Cwin\Component\Suggestion\Suggestion(); $checkSpelling = $wordSpelling->checkSpelling('indonesi sudah merdeka sejak tahunn empat lima'); $suggestion->setMaxListSuggestion(3); foreach ($checkSpelling->spellingResult() as $spelling) { echo '<span '.$spelling->getBaseWord().' '.($spelling->hasError() ? 'class="error word"' : 'class="word"').'>' . $spelling->getWord() ; if($spelling->hasError()) { echo " <span class='suggest'><ul><li>".implode("</li><li>", $suggestion->setSpelling($spelling)->suggest())."</li></ul></span> " ; } echo '</span> '; }