소스 검색

:bug: 缺少变量定义

visuddhinanda 5 년 전
부모
커밋
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();