如何使用php Codeigniter在头文件中包含头文件?

时间:2015-12-25 13:50:50

标签: php codeigniter directory-structure

我在“查看文件夹”中有两个文件夹

  1. 布局文件夹: - 在这个文件夹中我创建了两个文件header.php和footer.php

  2. 代理文件夹: - 在此文件夹中iIhave主文件dashboard.php。

  3. 我想在布局文件夹中包含页眉和页脚文件到Dashboard.php。

    我正在使用此代码:

    <?php include('../layout/header.php') ?>
    

2 个答案:

答案 0 :(得分:1)

试试这个:

$this->load->view('layout/header');
$this->load->view('layout/footer');

在控制器功能中,只需使用以下代码加载:

public function index()
    {
            $this->load->view('layout/header');
            $this->load->view('agent/dashboard');
            $this->load->view('layout/footer');
    }

答案 1 :(得分:1)

文件夹结构

application / view / template
应用/视图/位点

$this->load->view('template/header');
$this->load->view('site/dashboard');
$this->load->view('template/footer');