這篇文章主要介紹了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實作隨機輸出國內IP的函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!