gpt4 book ai didi

php - 在 codeigniter hmvc 中加载模型时出错

转载 作者:搜寻专家 更新时间:2023-10-31 20:38:48 25 4
gpt4 key购买 nike

我在 Controller 中加载模型。但是我有这个错误:

消息:未定义属性:Captcha::$captcha_model

还有这条消息:

fatal error :在 C:\xampp\htdocs\ci-framework\application\modules\captcha\controllers\captcha.php 中的非对象上调用成员函数 captcha_insert() 第 31 行

一切似乎都是真的!

Controller :

$time = $captcha['time'];
$ip_address = $this->input->ip_address();
$word = $captcha['word'];
$this->load->model('captcha/captcha_model');
$value = $this->captcha_model->captcha_insert($time, $ip_address, $word);

型号:

class Captcha_model extends CI_model {


public function captcha_insert($time, $ip_address, $word){

$query = $this->db->query("insert into captcha
(time, ip_address, word)
values(?, ?, ?)",
array($time, $ip_address, $word));
if ($query)
return true;
}


}

怎么了?非常感谢:)

最佳答案

这样做:

$time = $captcha['time'];
$ip_address = $this->input->ip_address();
$word = $captcha['word'];
$this->load->model('captcha_model/captcha_insert');
$value = $this->captcha_model->captcha_insert($time, $ip_address, $word);

关于php - 在 codeigniter hmvc 中加载模型时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28649814/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com