繁体   English   中英

如何修复 PHP codeigniter 框架中的“未定义属性:Register::$encrypt”

[英]How to fix "Undefined property: Register::$encrypt" in PHP codeigniter framework

当我在 CodeIgniter 中提交表单时,我收到此错误消息:未定义的属性:注册::$加密。 我想散列密码,这就是我使用加密的原因。

我试图在 autoload.php 中包含 encrypt 库,但仍然弹出另一个错误。

这是错误出现的地方。
功能验证(){

    $this->form_validation->set_rules('user_name','Name','required|trim');
    $this->form_validation->set_rules('user_email','Email Address','required|trim|valid_email|is_unique[codeigniter_register.email]');
    $this->form_validation->set_rules('user_password','Password','required|trim');

    if($this->form_validation->run()){

        $verification_key=md5(rand());
        $encrypted_password = $this->encrypt->encode($this->input->post('user_password'));
        $data = array(
            'name' => $this->input->post('user_name'),
            'email' => $this->input->post('user_email'),
            'password' => $encrypted_password,
            'verification_key' => $verification_key


        );
        $id=$this->register_model->insert($data);
        if($id > 0){
            $subject='Please verify email for login';
            $message="
                <p>Hi".$this->input->post('user_name')."</p>
                <p>Verify your email for login to this system. Click this <a href='".base_url()."register/verify_email/".$verification_key."'>link</a>.</p>
                <p>Use this link to log in in to this system.</p>
                <p>Thanks You.</p>
            ";

            $config = array(
                'protocol' => 'smtp',
                'smtp_host' => 'smtpout.secureserver.net',
                'smtp_port' => 80,
                'smtp_user' => 'root',
                'smtp_pass' => 'root',
                'mailtype' => 'html',
                'charset' => 'iso-8859-1',
                'wordwrap' =>TRUE
            );

            $this->load->library('email',$config);
            $this->email->set_newline("\r\n");
            $this->email->from('info@icode.info');
            $this->email->to($this->input->post('user_email'));
            $this->email->subject($subject);
            $this->email->message($message);
            if($this->email->send()){
                $this->session->set_flashdata('message','Check in your email for verification mail');
                redirect('register');
            }

        }

    }
    else{
        $this->index();
    }

我希望在提交表单后发出警报或将我在表单中填写的数据发送到数据库,

加载加密库

$this->load->library('encryption');
$encrypted_password = $this->encrypt->encode($this->input->post('user_password'));

https://www.codeigniter.com/user_guide/libraries/encryption.html

一旦加载,加密库对象将可用: $this->encryption

更新:

正如您提到在构造函数中加载它时,我又看了一眼:

看起来像是拼写错误

$this->load->library('encryption');
 ...
$this->encrypt->encode($this->input->post('user_password'));

代替

$this->load->library('encryption');
 ...
$this->encryption->encode($this->input->post('user_password'));

同样在文档中它以这种方式呈现

$ciphertext = $this->encryption->encrypt($plain_text);

一个简单的错误,我花了几分钟的时间看它也看它。 如果可以避免的话,我从不打字,我复制/粘贴所有内容。 主要是因为我的拼写和东西不好(阅读障碍)但它可以避免一些这样的问题......哈哈

很高兴我们为您整理好了!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM