Rumah >php教程 >PHP开发 >CI框架随记1

CI框架随记1

黄舟
黄舟asal
2016-12-29 09:34:461243semak imbas

class Home extends CI_Controller {
public function index(){
$this->load->view(" top ");
$this->load->view(" home.html "); 
$this->load->load(" foot "); 
}
}
//如果模板是html文件的话,就需要带.html后缀;如果是.php的话就不需要,$this->load->view(" home "); 
//也可以载入多个模板视图
//从文件夹里面载入多个视图
$this -> load -> view(" Index/top ");
$this -> load -> view(" Index/home ");
$this -> load -> view(" Index/footer ");
/**
* 分配给模板视图变量数据
*/
$data[' title '] = '你好 啊';
$this -> load -> view(" Index/top " ,$data );
注意:载入多个视图的时候,其中一个视图分配了数据变量的话,其他的视图也自动默认分配了数据变量
$data[ " name " ] = array(
" 张三 " , " 李四 " , " 王五 "
);
$this -> load -> view( " Index/home " , $data);

视图中: 

<?php echo $title; ?>



载入辅助函数

1,在控制器中手动载入

$this -> load -> helper(" name ");
url , site_url , base_url

2,自动载入辅助函数

$autoload[&#39;helper&#39;]=array(url);

3,共用函数是在system/core/common.php文件中写的

 以上就是CI框架随记1的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn