06 2022 档案

摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="IE=edge" > <meta name="viewport" content="width=devic 阅读全文
posted @ 2022-06-29 13:21 知风阁 阅读(1779) 评论(0) 推荐(0)
摘要:<?php $phone = '15738885555'; //方法一(字符串截取) echo substr($phone, 0, 3).'****'.substr($phone, 7); //方法二(推荐,系统函数) echo substr_replace($phone, '****', 3, 4 阅读全文
posted @ 2022-06-25 09:40 知风阁 阅读(788) 评论(0) 推荐(0)