PHP code example of youaoi / php-mecab

1. Go to this page and download the library: Download youaoi/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/ */

    

youaoi / php-mecab example snippets


    "    "youaoi/php-mecab": "dev-master"
    },

use Youaoi\MeCab\MeCab;
...

// 設定 ※任意。不要な値は省略できます。

    MeCab::setDefaults([
    
        // PATHが通っていないmecabを起動させる時に設定(default: mecab)
        'command' => '~/.local/bin/mecab',
         
        // 独自の辞書ディレクトリを利用する場合に設定(default: null)
        'dictionaryDir' => '~/.local/mecab-neologd',
        
        // 指定辞書を利用し解析。複数利用時はカンマ区切り(default: null)
        'dictionary' => 'hoge1.dic,hoge2.dic',
        
        // 解析時に生成するMeCabWordのclass名を指定(default: Youaoi\\MeCab\\MeCabWord)
        'wordClass' => User\\MeCab\\MeCabWord::class,
    ]);

...
// シンプルな使い方1

    echo MeCab::toReading('すもももももももものうち');
    // Output: スモモモモモモモモノウチ
    
    echo MeCab::toReading('山田太郎');
    // Output: ヤマダタロウ
    
    echo MeCab::toReading('C-3PO');
    // Output: 
    
    echo MeCab::toReading('出席番号:13番');
    // Output: シュッセキバンゴウバン

// シンプルな使い方2

    echo MeCab::toSortText('すもももももももものうち');
    // Output: スモモモモモモモモノウチ
    
    echo MeCab::toSortText('山田太郎');
    // Output: ヤマダタロウ
    
    echo MeCab::toSortText('C-3PO');
    // Output: C-3PO
    
    echo MeCab::toSortText('出席番号:13番');
    // Output: シュッセキバンゴウ:13バン

// ソート用文字列の作成方法
    $sentence = '仕様書_copy-new(3)';

    $text = MeCab::toSortText($sentence);
    $text = strtoupper(mb_convert_kana($text, 'rnashk'));

    // 漢字範囲など精度が悪いが、精密に判定する必要が無いので、ざっくりと削除
    $text = preg_replace('/[^ヲ-ンA-Z0-9一-龠]+/u','' ,$text);
    
    echo $text;
    // Output: シヨウショCOPYNEW3

... 

// データを解析する

    var_dump($a = MeCab::parse('すもももももももものうち'));
    
    $mecab = new MeCab();
    
    var_dump($b = $mecab->analysis('すもももももももものうち'));
    
    // $a == $b