当前位置:首页 > 芯闻号 > 充电吧
[导读]现在一提到主流框架就是MVC所以第一步新建controller吧默认里面是 welcome.php 这个默认控制器我把他删除了,新建了一个控制器defaults.php (default 不行,php

现在一提到主流框架就是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/
	* @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 */


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



调用该控制器的方法



修改网站的默认控制器



如后就可以这样调用了

本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除( 邮箱:macysun@21ic.com )。
换一批
延伸阅读
关闭