摘要: /** * 中间加密 字符串截取法 */ function encryptTel1($tel1) { $new_tel = substr($tel, 0, 3).'****'.substr($tel, 7); return $new_tel; } /** * 中间加密 替换字符串的子串 */ fun 阅读全文
posted @ 2023-02-01 14:49 SHACK元 阅读(172) 评论(0) 推荐(0) 编辑