Kôd:
<?php
if ($handle = opendir('/path/to/files')) {
while (false !== ($entry = readdir($handle))) {
$html = file_get_contents($entry);
if (preg_match('/(<p id="lyric">.*<\/p>)/iUs', $html, $matches)
{
$f = fopen("filename", "w");
fwrite($f, $matches[1]);
fclose($f)
}
}
closedir($handle);
}
?>
Ovako nekako bi se sve to odradilo u petlji kroz PHP, naravno pisano na brzaka, treba malo doterati da radi posao.