代码如下 | 复制代码 |
function matchip($q){ $ipaddress = '201.103.2.2'; |
$iptest = matchip( $ipaddress );
//当我们给matchip 的值为$ipaddress输出为201.103.2.2
//当我们给matchip的函数值为$iperror时,输出值为 62.3.6.6
代码如下 | 复制代码 |
if( $iptest ) { echo $iptest; } else { echo '111cn.net提示:你输的的ip地址有问题'; } |