Файл: inc/tools/domain_glue_checker/index.php
Строк: 40
<?
function google_glue($url){
$site = fopen('http://www.google.com/search?q=info%3A'.urlencode($url),'r');
while($cont = fread($site,1024657)){
$total .= $cont;
}
fclose($site);
$match_expression = '/<h2 class=r>(.*)</h2>/Us';
preg_match($match_expression,$total,$matches);
if (!isset($matches[1])) $glue=2;
else if (substr_count($matches[1], $url)) $glue=1; else $glue=0;
return $glue;
}
?>
<form id="form1" name="form1" method="post" action="">
<table width="100%" border="0" align="center" class="ttable">
<tr>
<td bgcolor="#D4D0C8"><strong>Массовая проверка "склейки" доменов в Google </strong></td>
</tr>
<tr>
<td align="center">список доменов:
<label></label><div align="center"></div></td>
</tr>
<tr>
<td align="center"><textarea name="urls" cols="70" rows="10" id="urls"></textarea></td>
</tr>
<tr>
<td align="center"><input type="submit" name="Submit" value="Проверить склейку" /></td>
</tr>
<tr>
<td><?php
if($_POST['urls'])
{
$urllist=explode("n", $_POST['urls']);
$url_count=count($urllist);
echo 'Количество доменов для проверки: <b>'.$url_count.'</b><br><br>';
if($url_count)
{
echo '<table width="100%">';
for($i=0; $i<$url_count; $i++)
{
ob_flush(); flush();
$url=trim($urllist[$i]);
echo '<tr><td><b>URL:</b> '.$url.'</td><td><b>';
$skleika=google_glue($url);
if($skleika==0) echo '<font color=red>Склеен</font>';
else if($skleika==1) echo '<font color=green>OK</font>';
else echo 'Нет в индексе';
echo '</b></td></tr>';
usleep(10);
}
echo '</table>';
}
}
?></td>
</tr>
</table>
</form>