Explorar o código

银行卡验证修改

qifengquan hai 1 ano
pai
achega
c426f13a90
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      app/data/sys.php

+ 5 - 1
app/data/sys.php

@@ -3031,7 +3031,11 @@ function checkbank($no=""){
         $i++;
     }
     $total -= $last_n;
-    $x = 10 - ($total % 10);
+    if(($total % 10)!=0){
+        $x = 10 - ($total % 10);
+    }else{
+        $x = 0;
+    }
     if($x == $last_n){
         return true;
     }else{