visuddhinanda 5 лет назад
Родитель
Сommit
d21cd71705
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      app/dict/split.php

+ 2 - 1
app/dict/split.php

@@ -28,7 +28,7 @@ this is a recursion, depth=16
 此为递归算法,深度=16
  */
 require_once "../dict/turbo_split.php";
-
+global $auto_split_times;
 //check input
 if (isset($_POST["word"])) {
     $input_word = mb_strtolower(trim($_POST["word"]), 'UTF-8');
@@ -66,6 +66,7 @@ if (isset($_POST["express"])) {
 
 //main
 
+
 $allword = array();
 foreach ($arrWords as $currword) {
     $t1 = microtime_float();