La captura viene aquí
Código PHP:
<?php
$options = array('http' => array(
'method' => 'GET',
));
$config= stream_context_create($options);
$config_final=file_get_contents('http://www.sindicatopide.org/foros/index.php?pagina=1',false, $config);
preg_match_all("|<!--- CACHE DE LA PAGINA 1 DE FORO -->(.*)<div class='ForoPaginacionBotonActual' style='width:60px;font-size:10px;'>|sU", $config_final, $tiempo);
echo $tiempo[1][0];
?>