Direk script değil ancak çoklu kontrollerde işini görebilecek ufak bir kod parçacığı...
ceviz.net arşivlerinden
$dosya="You want to download the file";
$content = file_get_contents($_POST['veri']);
$words = explode('<br />',nl2br($_POST['veri']));
if(is_array($words))
{
$i++;
foreach($words as $word)
{
$word=trim($word);
$getir= file_get_contents($word);
if(strpos($getir,$dosya))
echo $dosya." = 1<br>";
else
echo $dosya." = 0<br>";
$i++;
}
}