From 206dea63bdcd4bd374796b9c4d34bdb7e446dc88 Mon Sep 17 00:00:00 2001 From: holan20180123 <56391770@qq.com> Date: Mon, 7 Jun 2021 08:56:57 +0800 Subject: [PATCH] * Add comments. --- lib/spliter/spliter.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/spliter/spliter.class.php b/lib/spliter/spliter.class.php index f1ad87b7b8..295b45df52 100644 --- a/lib/spliter/spliter.class.php +++ b/lib/spliter/spliter.class.php @@ -39,6 +39,7 @@ class spliter { $i ++; + /* Stitching content in the case of words or Spaces. */ if($this->isLetter($letter)) { $word = $letter; @@ -80,6 +81,7 @@ class spliter } else { + /* When the current word has a corresponding number in the dictionary table, concatenate a space before it. */ if(is_numeric(substr($words, strlen($words) - 1, 1))) { $words .= ' ' . $letter;