Lo que tengo y se me ocurrio es usando el timestamp, hacer esto
Código PHP:
$hoyes=$administrador->fechaLegible(time());
//$hoyes es del tipo dd/mm/aaaa
if ($administrador->fechaLegible(timestamp)==$hoyes){
echo 'Si el time stamp es del dia $hoyes';
}
Código PHP:
function fechaLegible($timestamp){
$date=getDate($timestamp);
$dia=$date['mday'];
$mes=$date['mon'];
if (strlen($date['mday'])==1){
$dia="0".$date['mday'];
}
if (strlen($date['mon'])==1){
$mes="0".$date['mon'];
}
return $dia."-".$mes."-".$date['year'];
//02-01-2009 ejemplo
}
Desde ya... , Muchas Gracias....