PHP code example of hiroiku / php-mecab
1. Go to this page and download the library: Download hiroiku/php-mecab 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/ */
hiroiku / php-mecab example snippets
iroiku\MeCab\MeCab;
$text = 'すもももももももものうち'.PHP_EOL;
$mecab = new MeCab($text);
var_dump($mecab->parse());
iroiku\MeCab\MeCab;
$text = 'すもももももももものうち'.PHP_EOL;
$mecab = new MeCab($text);
$mecab->setBuffer(8 * 1024); // バッファーを設定する
var_dump($mecab->parse());
iroiku\MeCab\MeCab;
$text = 'すもももももももものうち'.PHP_EOL;
$mecab = new MeCab($text);
$mecab->setDictionary('辞書ディレクトリのパス'); // 辞書を設定する
var_dump($mecab->parse());
sh
php ./tests/main.php