0

私の主な仕事は、自分のウェブサイトのバックリンクが存在するかどうかを検証することでした。これは some.txt ファイルを通じて検証されます。私はそれをやったが、今問題は、URLをテーブル形式にしたいということです。

私のスクリプトはこれです

$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",$found)."\n";
echo "Matches that were not found \n". implode("\n",$notfound);
4

0 に答える 0