teepluss/wordbreaker

Word breaker is Thai wording separator for using with fulltext software.

v0.1 2014-11-24 05:42 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:48:11 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

Support via PayPal