PHP用户名/手机号/IP指定位星号显示

例子,用户名

 代码如下 复制代码

function cut_str($string, $sublen, $start = 0, $code = 'UTF-8')
{
    if($code == 'UTF-8')
    {
        $pa = "/[x01-x7f]|[xc2-xdf][x80-xbf]|xe0[xa0-xbf][x80-xbf]|[xe1-xef][x80-xbf][x80-xbf]|xf0[x90-xbf][x80-xbf][x80-xbf]|[xf1-xf7][x80-xbf][x80-xbf][x80-xbf]/";
        preg_match_all($pa, $string, $t_string);

        if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen));
        return join('', array_slice($t_string[0], $start, $sublen));
    }
    else
    {
        $start = $start*2;
        $sublen = $sublen*2;
        $strlen = strlen($string);
        $tmpstr = '';www.111cn.Net

        for($i=0; $i< $strlen; $i++)
        {
            if($i>=$start && $i< ($start+$sublen))
            {
                if(ord(substr($string, $i, 1))>129)
                {
                    $tmpstr.= substr($string, $i, 2);
                }
                else
                {
                    $tmpstr.= substr($string, $i, 1);
                }
            }
            if(ord(substr($string, $i, 1))>129) $i++;
        }
        //if(strlen($tmpstr)< $strlen ) $tmpstr.= "...";
        return $tmpstr;
    }
}

示例

 代码如下 复制代码

$str = "如来神掌";
echo cut_str($str, 1, 0).'**'.cut_str($str, 1, -1);
//输出:如**掌

下面附两个IP地址与手机号星号显示

初学PHP,看到别人是通过合并和拆分数组进行这个操作!所以转过来!!

 代码如下 复制代码

<?php 

$ip =$_SERVER['REMOTE_ADDR'];

  $ip_arr= explode('.', $ip);

  $ip_arr[3]='*';

  $ip= implode('.', $ip_arr);

echo $ip;

?>

手机号的

 代码如下 复制代码

<?php
$haoma="15012345678";
echo preg_replace("/(d{3})d{5}/","$1*****",$haoma);
//150*****678
?>

时间: 2024-10-13 05:18:58

PHP用户名/手机号/IP指定位星号显示的相关文章

php手机号中间四位用星号*代替显示

通过php用三种简单的方法实现手机号中间四位(n位)用星号显示: $mobile = '13912345678'; //1.字符串截取法 $newMobile1 = substr($mobile, 0, 5).'****'.substr($mobile, 9); echo $newMobile1.'<br/>'; //2.替换字符串的子串 $newMobile2 = substr_replace($mobile, '****', 5, 4); echo $newMobile2.'<br/

.net-怎么实现文字按指定的路径显示

问题描述 怎么实现文字按指定的路径显示 在网上搜了一些代码表示看不太明白,粘贴到VS中运行老是出错哪位大神能指点指点using System; using System.Collections;using System.Collections.Generic;using System.Linq;using System.Data;using System.Diagnostics;using System.Drawing;using System.Drawing.Imaging;using Sys

在ASP中按指定参数格式化显示时间的函数。

函数|显示|函数 <%'该函数作用:按指定参数格式化显示时间.'numformat=1:将时间转化为yyyy-mm-dd hh:nn格式.'numformat=2:将时间转化为yyyy-mm-dd格式.'numformat=3:将时间转化为hh:nn格式.'numformat=4:将时间转化为yyyy年mm月dd日 hh时nn分格式.'numformat=5:将时间转化为yyyy年mm月dd日格式.'numformat=6:将时间转化为hh时nn分格式.'numformat=7:将时间转化为yy

在ASP中按指定参数格式化显示时间的函数

函数|显示|函数 <%'该函数作用:按指定参数格式化显示时间.'numformat=1:将时间转化为yyyy-mm-dd hh:nn格式.'numformat=2:将时间转化为yyyy-mm-dd格式.'numformat=3:将时间转化为hh:nn格式.'numformat=4:将时间转化为yyyy年mm月dd日 hh时nn分格式.'numformat=5:将时间转化为yyyy年mm月dd日格式.'numformat=6:将时间转化为hh时nn分格式.'numformat=7:将时间转化为yy

在Word文档中按指定的间隔显示行号的方法

  在Word文档中按指定的间隔显示行号的方法         1.启动Word 2013,打开需要添加行号的文档.在"页面布局"选项卡中单击"页面设置"按钮打开"页面设置"对话框,在"版式"选项卡中单击"行号"按钮,如图1所示. 图1 "页面设置"对话框 注意 在"页面设置"组中单击"行号"按钮 ,在打开的列表中选择"无"选项

js如何设置在iframe框架中指定div不显示

 在iframe框架中指定div不显示,有多种实现方法,接下来与大家分享下使用js的具体实现,感兴趣的朋友可以参考下 代码如下: <html xmlns="http://www.w3.org/1999/xhtml" >  <head runat="server">  <title>测试</title>  <script language="javascript" type="text

ip-关于IP指定用异地他的IP或者离的距离较近的软件有吗

问题描述 关于IP指定用异地他的IP或者离的距离较近的软件有吗 就像我的IP是110.168.1.0 对方的IP是220.155.2.136 我用什么软件 或者我怎么才能用他所在的地域上的IP段 解决方案 可以自己写一个,先查询位置,再得到坐标,然后算距离. 解决方案二: 你可以先查查对方IP段的物理位置,然后查找该地区的代理服务器,连接上代理服务器之后就能用这些IP段了吧 解决方案三: 要在对方那里,设一下代理服务器. 或者在他的机器上,设置一个vpn ,并共享他的上网连接. 解决方案四: 要

bmp-关于BMP24位位图显示的问题

问题描述 关于BMP24位位图显示的问题 VC写的数字图像显示,显示出来的图像是歪的,接着再点保存的话就会变成其他格式的文件,是为什么?(新手求教), 解决方案 24位位图转4位彩色图(BMP)实现1位,4位,8位,24位BMP位图的互相转换的方法,32位转24位把24位和32位BMP位图转为灰色bmp位图 解决方案二: 贴出你的代码片段才知道怎么回答你

javascript-java script 语句,判断用户名必须为8位数字的语句怎么写?

问题描述 java script 语句,判断用户名必须为8位数字的语句怎么写? 我在做一个用户注册页面,想用java script 语句,判断用户名必须为8位数字,这个语句怎么怎么写? 解决方案 <!DOCTYPE html> <html> <script type="text/javascript"> function validate(){ var reg = /^d{8}$/; //定义正则表达式 var obj = document.getE