wupengfei 2 years ago
parent
commit
fda43c5c8d
2 changed files with 2 additions and 3 deletions
  1. 1 1
      .idea/workspace.xml
  2. 1 2
      application/api/common.php

+ 1 - 1
.idea/workspace.xml

@@ -198,7 +198,7 @@
       <workItem from="1669952538953" duration="9708000" />
       <workItem from="1670201125142" duration="9015000" />
       <workItem from="1670287594399" duration="11535000" />
-      <workItem from="1670461023846" duration="17325000" />
+      <workItem from="1670461023846" duration="17355000" />
     </task>
     <servers />
   </component>

+ 1 - 2
application/api/common.php

@@ -118,7 +118,6 @@ function numTransform($num)
     $num = intval($num);
     if($num < 10000) return $num;
     $cal_num = bcdiv($num,10000,1);
-    var_dump($cal_num);
-    return trim($cal_num,'.0').'w+';
+    return $cal_num.'w+';
 }