hocam yanlış anlamadıysam sorunu echo ile yazdırmamışsınız ondan ekrana basmıyor
<?php
$vericek=file_get_contents("http://www.haberler.com/guncel/");
echo preg_match_all('#<div style="padding-top:2px;padding-bottom:2px;">
<a href="(.*?)" style="color:\#0D53B2;font-size:11pt;">(.*?)</a>
</div>
(.*?)
</div>
#si',$vericek,$bilgi,PREG_SET_ORDER);
foreach($bilgi as $haberc) {
echo $haberc[1]."<br />";
}
?>