如何使用phpCodeigner将头文件包含在视图文件夹的主文件中


How to include header file in main file in the View Folder using php Codeigniter?

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

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

  2. 代理文件夹:-在此文件夹中,我有主文件dashboard.php.

我想把页眉和页脚文件从布局文件夹包括到Dashboard.php。

我使用的是这个代码:

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

试试这个:

$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');
    }

文件夹结构

应用程序/视图/模板
应用程序/视图/站点

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