当前位置:Gxlcms > PHP教程 > PHP实现随机输出国内IP的函数

PHP实现随机输出国内IP的函数

时间:2021-07-01 10:21:17 帮助过:32人阅读

这篇文章主要介绍了PHP实现的随机IP函数,可实现输出国内IP段的功能,涉及php字符串与数组的计算操作相关技巧,需要的朋友可以参考下

具体如下:

function get_rand_ip(){
  $arr_1 = array("218","218","66","66","218","218","60","60","202","204","66","66","66","59","61","60","222","221","66","59","60","60","66","218","218","62","63","64","66","66","122","211");
  $randarr= mt_rand(0,count($arr_1));
  $ip1id = $arr_1[$randarr];
  $ip2id=  round(rand(600000,  2550000)  /  10000);
  $ip3id=  round(rand(600000,  2550000)  /  10000);
  $ip4id=  round(rand(600000,  2550000)  /  10000);
  return  $ip1id . "." . $ip2id . "." . $ip3id . "." . $ip4id;
}
echo get_rand_ip();//
输出:211.104.85.78

总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。

相关推荐:

php常用数组函数实例分析

php常用正则函数实例分析

PHP实现截取中文字符串不出现?号的解决方法_php技巧

以上就是PHP实现随机输出国内IP的函数的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行