Skip to content

Instantly share code, notes, and snippets.

@Sankame
Last active May 4, 2017 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sankame/d0ff28564c451c4372cf to your computer and use it in GitHub Desktop.
Save Sankame/d0ff28564c451c4372cf to your computer and use it in GitHub Desktop.
phpからmecabを利用する。
<?php
dl('mecab.so');
$t = new MeCab_Tagger();
$str = 'すもももももももものうち';
echo $t->parse($str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment