Your Name 5 月之前
父節點
當前提交
e59c6b012a
共有 1 個檔案被更改,包括 20 行新增0 行删除
  1. 20
    0
      application/api/controller/Diyajax.php

+ 20
- 0
application/api/controller/Diyajax.php 查看文件

673
         }
673
         }
674
     }
674
     }
675
 
675
 
676
+    public function  replaceSecondChineseCharWithAsterisk($string) {
677
+        $count = mb_strlen($string); // 获取字符串长度
678
+            if ($count < 2) {
679
+                return $string; // 如果长度小于2,则直接返回
680
+            }
681
+
682
+        $firstChar = mb_substr($string, 0, 1); // 获取第一个字符
683
+        $secondChar = mb_substr($string, 1, 1); // 获取第二个字符
684
+
685
+        // 如果第二个字符是中文,则替换为星号
686
+        if (strpos(mb_strcut($secondChar, 0, 3), '*') === false) {
687
+            $string = $firstChar . str_repeat('*', mb_strlen($secondChar)) . mb_substr($string, 2);
688
+        }
689
+
690
+        return $string;
691
+    }
676
     public function getFormList()
692
     public function getFormList()
677
     {
693
     {
678
         $list = Db::name('zc_form')
694
         $list = Db::name('zc_form')
687
         //var_dump($list);
703
         //var_dump($list);
688
         $is_tg_str = ['条件不符','符合条件'];
704
         $is_tg_str = ['条件不符','符合条件'];
689
         foreach ($list as $key => $item) {
705
         foreach ($list as $key => $item) {
706
+
707
+            //处理用户姓名
708
+            $item['ch'] = $this->replaceSecondChineseCharWithAsterisk($item['ch']);
709
+
690
             $item['is_tg_n'] = $item['is_tg'];
710
             $item['is_tg_n'] = $item['is_tg'];
691
             $extend_info = json_decode($item['extend'],true);
711
             $extend_info = json_decode($item['extend'],true);
692
             $item['sbxx'] = $extend_info['sbdj'];
712
             $item['sbxx'] = $extend_info['sbdj'];

Loading…
取消
儲存