異なるリンクと URL を持つ 1 つの txt ファイルを取得するこのスクリプトがあります。このスクリプトは、.txt ファイルにあるリンクに存在する被リンクをチェックします。私のスクリプトはこれです
<?php
$needle = $_GET['utext'];
$file = $_GET['ufile'];
$source = file_get_contents($file);
$new = explode("\n",$source);
foreach ($new as $check){
$a = file_get_contents(trim($check));
if (strpos($a,$needle)){
$found[] = $check;
}
else{
$notfound[] = $check;
}
}
echo "Matches that were found: \n ".implode("\n","\n".$found)."\n";
echo "<br> <br> <br> <br>";
echo "Matches that were not found \n". implode("\n","\n".$notfound);
?>