$ curl -XGET "localhost:9200/_analyze?analyzer=kuromoji&pretty" -d "お寿司食べたい" { "tokens" : [ { "token" : "寿司", "start_offset" : 1, "end_offset" : 3, "type" : "word", "position" : 2 }, { "token" : "食べる", "start_offset" : 3, "end_offset" : 5, "type" : "word", "position" : 3 } ] } <?php /** * ElasticSearchとのやり取りをするクラス */ class ElasticSearchService { /** 接続先のElasticSearchのURL & ポート */ const BASE_URL =