";
}
}
}
closedir($handle);
}
$indexdir = "content"; //индексируемая директория
go_to_dir($indexdir);
$indexfile = "indexfile.txt"; //файл, в котором будет лежать индекс
$fp = fopen($indexfile, "w+");
flock($fp, LOCK_EX);
fwrite($fp, $fullfile);
flock($fp, LOCK_UN);
fclose($fp);
// считаем, как долго работал скрипт
$ddd=microtime();
$ddd=((double)strstr($ddd, ' ')+(double)substr($ddd,0,strpos($ddd,' ')));
echo ("
Время индексации: ".(number_format(($ddd-$ttt),3))." секунд
");
echo ("Размер индекса: ".(number_format((round ((filesize($indexfile))/1024)) , 0, ".",".")))." Kb";
?>