2
I have the following comparison:
# Verifica se está em tempo habil para concluir a transacao
if($transacao->data_expira <= date("Y-m-d H:i:s")." 000000"){
echo "Ainda é permitido pagar";
} else {
echo "Esta cobrança não pode ser mais paga!";
}
Where $transcao->data_expira is = 2017-10-05 15:42:54.000000
Data Atual: 2017-10-04 19:14:20
Data Expira: 2017-10-05 15:42:54
In this case, payment would have to be allowed. How can I make this comparison correctly?
Related: https://answall.com/questions/33469/como-comparar-datas-em-php
– novic
$transacao->data_expira
is the typeDateTime
?– RFL