Fenci.php 267 B

123456789101112131415161718
  1. <?php
  2. namespace Dy;
  3. class Fenci
  4. {
  5. /**
  6. * 分词处理
  7. *
  8. * @param string $str
  9. * @param bool $hmm 使用 hmm 参数
  10. *
  11. * @return array|ErrorException
  12. */
  13. public static function do(string $str, bool $hmm = false)
  14. {
  15. }
  16. }