Heim >Backend-Entwicklung >PHP-Tutorial >php的ci框架引入视图问题!

php的ci框架引入视图问题!

WBOY
WBOYOriginal
2016-06-06 20:47:021033Durchsuche

<code>public function add(){
    $this->load->view('user/header');
    $this->load->view('user/users/add');
    $this->load->view('user/footer');
}
</code>

为什么前边会加上php的ci框架引入视图问题!

事实上是没有的!
php的ci框架引入视图问题!

这是ci框架自生的安全措施吗?
还是哪里要修正一下,肯定有错就是没找到
ci版本是2.1.4

回复内容:

<code>public function add(){
    $this->load->view('user/header');
    $this->load->view('user/users/add');
    $this->load->view('user/footer');
}
</code>

为什么前边会加上php的ci框架引入视图问题!

事实上是没有的!
php的ci框架引入视图问题!

这是ci框架自生的安全措施吗?
还是哪里要修正一下,肯定有错就是没找到
ci版本是2.1.4

这个肯定是你的代码里面输出的,想知道在哪里可以在代码的关键位置加上:

<code class="lang-php">var_dump(__FILE__ . __LINE__);
</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn