我必须得到一个列表的输出,该列表只包含 :8080 之类的端口,而不包含任何其他端口,因此 php 必须检查网站是否包含任何带有 :8080 端口的行,如果是,则必须打印整行。
$url = "https://proxymagic.cc/Home/FreeProxies?accesskey=key";
$str = file_get_contents($url);
$lines = explode('
', $str);
foreach($lines as $line) {
if (stripos($line, '8080') !== false) {
$line = $output;
}
echo $output;
}