0 ); foreach($curl as $cid => $cend) { $info = curl_getinfo($cend); curl_multi_remove_handle($multi,$cend); if($info['http_code'] != 0) { $total++; echo "[~]Proxy works -> ".$ip[$cid]."\n"; save_file("works.txt",$ip[$cid]); } } } $time2 = time(); echo "\n[+]Total working proxies: $total,checking completed\n"; echo "[+]Elapsed time -> ".($time2-$time1)." seconds\n"; echo "-------------------------------------------------------\n"; } function save_file($file,$content) { $open = fopen($file,'ab'); fwrite($open,$content."\r\n"); fclose($open); } ?>