php – Codeigniter模型未定义的属性

前端之家收集整理的这篇文章主要介绍了php – Codeigniter模型未定义的属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在控制器文件中有以下代码,用于检查post varible pdf并执行以下代码
if(isset($_POST['pdf']) && $_POST['pdf']=="pdf")
            {
                $this->load->model('voutput_model');
                $final_view = $data['frmReport'];
                $PDF_Name = "report.pdf";
                $this->votput_model->pdf($PDF_Name,$final_view);

            }

我在模型文件中有以下代码

class Voutput_model extends CI_Model{

    public function __construct()
    {
        parent::__construct();
        $this->CI = get_instance();
    }

    public function pdf($file_name,$filecontents){
        $this->pdf_path = $this->config->item('pdf_path');
        $this->load->library('htmltopdf/Html2fpdf');
        $file['Attach_path'] = $this->pdf_path.$file_name;
        $this->html2fpdf->generate_pdf($file['Attach_path'],$filecontents,'Y');
    }
}

当我执行代码时,我收到如下错误

Severity: Notice
Message: Undefined property: Voutput::$Voutput_model
Filename: controllers/voutput.PHP
Fatal error: Call to a member function pdf() on a non-object in 
            C:\xampp\htdocs\asset\application\controllers\voutput.PHP
您需要在使用前加载模型.尝试这个
$this->load->model('votput_model');
 $this->votput_model->pdf($PDF_Name,$final_view);
原文链接:https://www.f2er.com/php/138441.html

猜你在找的PHP相关文章