אני רוצה שזה יסנן לי וישאיר רק את הפרוקסים אבל אני לא מבין מה הבעיה וזה לא עובד לי..
PHP קוד:
<?php
$i0=0;
$handle = fopen("http://www.digitalcybersoft.com/ProxyList/fresh-proxy-list.shtml", "r");
if ($handle) {
while (!feof($handle)) {
$buffer =$buffer.fgets($handle, 4096);
$i0++;
}
$allsource=$buffer;
fclose($handle);
}
$proxylist=explode($allsource, "\n");
for ($i=0; ; $i++){
if ($i==$i0 || $i>$i0){ break; }
preg_match_all("([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}(\:[0-9]{1,4})?)",$proxylist[$i],$end[$i][0]);
print_r ($end[$i][0]); }
?>