Browse Source

:bug: 缺少变量定义

visuddhinanda 5 years ago
parent
commit
d21cd71705
1 changed files with 2 additions and 1 deletions
  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();