- Extract IP:PORT Using PHP
- Extract IP:PORT Using PHP Regex
- Regular Expression Extract Proxy
$re = '/([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}):?([0-9]{1,6})?/m';
$str = '139.59.68.234:8080
213.136.87.217:80
66.70.255.195:3128
66.70.255.195:3128
64.90.244.115:8080
159.65.156.208:80
66.70.147.196:3128
66.70.147.197:3128
54.39.23.19:3128
139.59.224.50:80
142.44.137.222:80
179.107.51.203:80';
preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);
var_dump($matches);
Created at 2018-04-12 12:43:00
Updated at 2023-10-08 03:49:53
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.