1 2 3 4 5 6 | <code> public function add(){
$this ->load->view( 'user/header' );
$this ->load->view( 'user/users/add' );
$this ->load->view( 'user/footer' );
}
</code>
|
Copier après la connexion
Copier après la connexion
为什么前边会加上
事实上是没有的!

这是ci框架自生的安全措施吗?
还是哪里要修正一下,肯定有错就是没找到
ci版本是2.1.4
回复内容:
1 2 3 4 5 6 | <code> public function add(){
$this ->load->view( 'user/header' );
$this ->load->view( 'user/users/add' );
$this ->load->view( 'user/footer' );
}
</code>
|
Copier après la connexion
Copier après la connexion
为什么前边会加上
事实上是没有的!

这是ci框架自生的安全措施吗?
还是哪里要修正一下,肯定有错就是没找到
ci版本是2.1.4
这个肯定是你的代码里面输出的,想知道在哪里可以在代码的关键位置加上:
1 | var_dump( __FILE__ . __LINE__ );
|
Copier après la connexion