CI(1) controller

现在一提到主流框架就是MVC


所以第一步新建controller吧



默认里面是 welcome.php 这个默认控制器


我把他删除了,新建了一个控制器defaults.php (default 不行,php的关键字)


<?php 
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class defaults extends CI_Controller {

	/**
	 * Index Page for this controller.
	 *
	 * Maps to the following URL
	 * 		http://example.com/index.php/welcome
	 *	- or -  
	 * 		http://example.com/index.php/welcome/index
	 *	- or -
	 * Since this controller is set as the default controller in 
	 * config/routes.php, it's displayed at http://example.com/
	 *
	 * So any other public methods not prefixed with an underscore will
	 * map to /index.php/welcome/<method_name>
	 * @see http://codeigniter.com/user_guide/general/urls.html
	 */
	public function index()
	{
		header('Content-type:text/html;charset=utf-8');
		$this->load->view('head');
		$this->load->view('body');
		$this->load->view('foot',array('foot'=>'哥们'));
	}
}

/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */

一目了然,不需要多解释的代码


调用该控制器的方法



修改网站的默认控制器



如后就可以这样调用了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值