我创建了注册页面,当用户单击提交按钮时,激活链接将发送到他的电子邮件,因此时间戳存储在数据库中。如果用户单击该激活链接,我必须检查该链接是在 24 小时之前还是之后单击的。我的代码:-
function confirmEmail($activation_code){
$this->load->database();
$this->load->helper('date');
echo "activation link will be checked and accordingly flag will be set.";
$activation_sent_timestamp=$this->db->query("SELECT activation_timestamp FROM tbl_user_registration WHERE email_verification_code='$activation_code'");
foreach($activation_sent_timestamp->result() as $res){
$activation_time_from_db=$res->activation_timestamp;
}
echo $activation_time_from_db."\n\r";
$now = time();
$human = unix_to_human($now);
echo $human;
$difference = ($human-$activation_time_from_db);
if($difference < 24) {
echo "correct"
}
else echo "Link expired";
}
我正在使用代码点火器。我该怎么做,这段代码没有显示任何错误,但我不知道这是计算 24 小时的正确方法,我正在检查但没有得到任何东西。请检查代码。
解决了........ :)