时间:2021-07-01 10:21:17 帮助过:5人阅读
比如提取出:27.34.142.47:9090、177.69.195.4:3128....
如何用php正则把这个代理服务器网站http://www.ipdizhi.com/的代理ip:端口,全部提取出来?
比如提取出:27.34.142.47:9090、177.69.195.4:3128....
preg_match_all(
'/\b\d+\.\d+\.\d+\.\d+\:\d+(?=@)/',
file_get_contents('http://www.ipdizhi.com/'),
$matches);
$proxy_list = $matches[0];
PS. 那个网站底部有个"代理ip列表txt文件下载"的链接,它本身都帮你提取好了的。