teepluss / wordbreaker
Word breaker is Thai wording separator for using with fulltext software.
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2024-11-05 03:32:18 UTC
README
Wordbreaker is a thai wording separator.
This package is just a wrapper from PhlongTaIam: PHP Thai word breaker
Installation
To get the lastest version of Wordbreaker simply require it in your composer.json
file.
"teepluss/wordbreaker": "dev-master"
You'll then need to run composer install
to download it and have the autoloader updated.
Once Wordbreaker is installed you need to register the service provider with the application. Open up app/config/app.php
and find the providers
key.
'providers' => array(
'Teepluss\Wordbreaker\WordbreakerServiceProvider'
)
Theme also ships with a facade which provides the static syntax for creating collections. You can register the facade in the aliases
key of your app/config/app.php
file.
'aliases' => array(
'Wordbreaker' => 'Teepluss\Wordbreaker\Facades\Wordbreaker',
)
Publish config using artisan CLI.
php artisan config:publish teepluss/wordbreaker
Usage
// Append dictionary. $source = [ 'ทดสอบ', 'ประโยค', 'ภาษาไทย', 'ยาว', 'แตก', 'คำ' ]; Wordbreaker::add($source); // Separate sentence into word. $text = 'ทดสอบการแตกคำจากประโยคที่มีความยาว และติดกันมากๆ ในภาษาไทย'; $w = Wordbreaker::make($text); var_dump($w);
Support or Contact
If you have some problem, Contact teepluss@gmail.com