用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2689|回复: 1
收起左侧

[讨论/交流] 输出视图有间距

[复制链接]
发表于 2011-11-28 20:59:40 | 显示全部楼层 |阅读模式
为什么我这样输出视图,在视图间会有间距
<?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');
}
}
?>
新手上路,高手指点下!!
发表于 2011-11-28 21:17:20 | 显示全部楼层
检查视图文件是否包含了bom头,或者多余的空格,换行什么的

本版积分规则