我有2个问题需要解决。首先,我有这个小功能
if(!$verified) {
$this->db->trans_rollback();
$this->form_validation->set_message('token_expired', 'Token expired try again.');
$this->load->view('header');
$this->load->view('forgot_password_view');
$this->load->view('footer');
}
我只粘贴了必要的代码,所以当验证失败时,我想在forgetpasswordview上加载set消息,但问题是我正在使用该页面验证错误与其他事情我也希望此消息显示是否这个功能不起作用。这是观点。
<div class="well">
<?php echo validation_errors(); ?>
<?php
if(validation_errors() != false)
{
echo '<div class="form-group alert alert-danger has-error">';
echo'<ul>';
echo validation_errors('<li class="control-label">', '</li>');
echo'</ul>';
echo '</div>';
}
?>
<?php echo form_open('login/reset_password'); ?>
<h1>Forgot your password?</h1>
<p>Please enter your email address so we will send you a link to change your password</p>
<div class="<?php if(form_error('email')!= null){echo ' has-error';} ?>">
<input name="email" style="width: 20%" class="form-control" type="email" placeholder="Enter your email Address"/>
<button style="margin-top:20px;" class="btn btn-default" type="submit" name="submit">Submit</button>
</div>
</div>
我认为第一个echo validation_errors可能会处理token_expired,但当然不能正常工作,当我检查电子邮件是否经过验证时,第二个验证工作正常。
我的第二个问题是,我有一个功能,但插入当前时间+ 15分钟。我在赫尔辛基/芬兰,所以我就这样使用它。
function __construct(){
parent::__construct();
date_default_timezone_set('Europe/Helsinki');
......并且在函数中
$data = array(
'expiration' => date("Y-m-d h:i:s", strtotime("+15 minutes")),
);
但问题是它工作正常到中午12点,但是当它下午1点它应该发挥13:15:00但它显示01:15:00所以需要解决这个问题。
答案 0 :(得分:3)
如果没有提交表单,则无法设置表单验证消息。将变量传递给您的视图
if(!$verified)
{
$this->db->trans_rollback();
$message['token_expired']= 'Token expired try again.';//(token_expired)?'Token expired try again.':'';
$this->load->view('header');
$this->load->view('forgot_password_view', $message);
$this->load->view('footer');
}
在视野中
if(isset($token_expired) && $token_expired != '')
{
echo $token_expired;
}
第二个问题
$data = array(
'expiration' => date("Y-m-d H:i:s", strtotime("+15 minutes")),
);