将IP最后一位替换为星号

来源:互联网 发布:最全在线网络投资理财 编辑:程序博客网 时间:2024/05/17 06:04
<script type="text/javascript"><!--google_ad_client = "pub-4490194096475053";/* 内容页,300x250,第一屏 */google_ad_slot = "3685991503";google_ad_width = 300;google_ad_height = 250;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
http://www.corange.cn/archives/2008/02/230.html
<?php
$str = '1.1.1.1';

$reg = '/((?:/d+/.){3})/d+/';

echo preg_replace($reg, "//1*", $str);
?>
原创粉丝点击