PHP code example of sters / mikan.php

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

    

sters / mikan.php example snippets


$mikan = new Mikan();
$result = $mikan->split('常に最新、最高のモバイル。Androidを開発した同じチームから。');

var_dump($result);
----
array(8) {
  [0]=>
  string(6) "常に"
  [1]=>
  string(9) "最新、"
  [2]=>
  string(9) "最高の"
  [3]=>
  string(15) "モバイル。"
  [4]=>
  string(10) "Androidを"
  [5]=>
  string(12) "開発した"
  [6]=>
  string(6) "同じ"
  [7]=>
  string(18) "チームから。"
}