调用udefined函数form_open()?

时间:2015-07-21 16:05:50

标签: php codeigniter phpstorm

我的问题是我在CI的常用功能上遇到错误。我做了以下所有事情:

 $autoload['helpers'] = array('form','myhelper');

以前我使用Dreamweaver并没有收到那些消息,现在我必须处理PhpStorm。

这是我的默认控制器:

      $this->load->helper('url');
      $this->load->view('header');
      $this->load->view('home');
      $this->load->helper('form');
      $this->load->view('footer');

我也使用了这个tutorial,但没有成功。

enter image description here enter image description here

这些是以前的错误!

1 个答案:

答案 0 :(得分:0)

不要忘记如下所示的CI_Controller

<强>应用/控制器/ Homepage.php

class Homepage extends CI_Controller 
{
    function __construct()
    {
        parent::__construct();
    }
}