Aqui esta un ejemplo realizando un consulta SQL:
Código PHP:
$fechaHoy = date('Y-m-d');
$restantes = $this->consulta("SELECT DATEDIFF('".$fechaLimite."','".$fechaHoy."') AS dias");
$resultRestantes = $this->fetch_array($restantes);
foreach($resultRestantes as $rowRestantes):
$diasRestantes = $rowRestantes['dias'];
endforeach;