输出视图有间距
为什么我这样输出视图,在视图间会有间距<?php
class Blog extends CI_Controller {
function __construct()
{
parent::__construct();
}
function index()
{
$this->load->helper('url');
$this->load->view('header');
$this->load->view('huiyuanfc');
$this->load->view('footer');
}
}
?>
新手上路,高手指点下!!
检查视图文件是否包含了bom头,或者多余的空格,换行什么的
页:
[1]