Jump to content
Fórum Script Brasil
  • 0

Adicionar 01 hora a uma variável e comparar com hora atual (Resolvido)


RRH

Question

Psquisando sobre como lidar com horas no php encontrei o código abaixo que soma horas a hora atual:

<?php
echo date("H:i:s", strtotime("3 hours"));
?>

Só que estou precisando adicionar 01 hora a uma variável e não a hora atual mas não estou conseguindo.

Edited by RRH
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Ok, obrigado. Mas como já estava com a cabeça "quente" esqueci de dizer que tal variável conterá uma hora no formato H:i:s (00:00:00) vindo de uma pesquisa ao bd mysql.

<?

$sql = "SELECT hora FROM tabela;"

$resultado = mysql_query ($sql);

while ($linha = mysql_fetch_array($resultado)){

echo $linha["hora"]; Aqui seria a hora ex: 18:00:00 + 1 hora = 19:00:00

}

?>

Edited by RRH
Link to comment
Share on other sites

  • 0

Seguindo sua dica consegui avançar, porém agora estou agarrado na condição, vejam:

<?php 

$datahoraatual = strtotime ($linha['data_inicial']." ".$linha['hora_inicial']);

$datahorahmais = strtotime("1 hours", $datahoraatual);

...

if (strtotime($datahoraatual) > strtotime($datahoramais)){

echo "<td align='center' style='background-color:red;'>".date('H:i', strtotime($linha["hora_inicial"]))."</td>";

}else{

echo "<td align='center'>".date('H:i', strtotime($linha["hora_inicial"]))."</td>";
}
?>

O código acima não está funcionando! Ele sempre está exibindo a célula em vermelho. Estou precisando que após uma consulta o sistema compare a hora atual com a hora em que o registro foi inserido no mysql e se já tiver passado 01 hora ou mais da inclusão do registro mude a cor da célula para vermelho.

Edited by RRH
Link to comment
Share on other sites

  • 0

Alterando o formato da data/hora a serem comparadas de:

Ex:

2011-08-19 00:00:00

para

20110819000000

consegui o resultado que buscava:

<? ...
$hoje = date("YmdHis");
$hregistro = strtotime ($linha['data_registro']." ".$linha['hora_registro']);
$hmais = strtotime("1 hours", $hregistro);
$hmais_novo = date("YmdHis",$hmais);


if ($hoje >= $hmais_novo) {

echo "<td align='center' style='background-color:red;'>".date('H:i', strtotime($linha["hora_registro"]))."</td>";

}else{

echo "<td align='center'>".date('H:i', strtotime($linha["hora_registro"]))."</td>";
}

...?>

Edited by RRH
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...