语法错误,意外' {'

时间:2016-02-10 05:47:47

标签: php codeigniter

我是codeigniter的新手并做了一些教程,我遇到了这个问题。这是我的模型的系数

if(!defined('BASEPATH')) exit('No direct script access allowed');

class Wip_model extends CI_Model
{
function __construct()
{
    // call the model constructor
    parent::__construct();

    // this is the line 14 error
}
}

但我收到此错误enter image description here

请帮助.......

这是调用它的控制器中的函数

public function __construct()
{
    parent::__construct();
    $this->load->library('session');
    $this->load->helper('form');
    $this->load->helper('url');
    $wipDB = $this->load->database('WIPDB',TRUE);
    $this->load->library('form_validation');
    // load the model
    $this->load->model('wip_model');
}

0 个答案:

没有答案