$dom = new Zend_Dom_Query($html);
$results = $dom->query('.foo .bar a');
exec('php script.php > /dev/null &');
$html = file_get_contents("http://tourdom.tv/happy-hour/schastlivyj-chas/?dehide=2014-01-10");
if(preg_match('/<tr style="border-top: solid 1px;">(.*?)<td colspan="3">/, $html, $res)){
// дополнительный парсинг ...
file_put_contents('result.txt', $res[1]);
}