如何使用 php Codeigniter 在视图文件夹中的主文件中包含头文件?
How to include header file in main file in the View Folder using php Codeigniter?
我在查看文件夹中有两个文件夹
Layout 文件夹:- 在这个文件夹中我创建了两个文件 header.php 和 footer.php
代理文件夹 :- 在这个文件夹中我有主文件 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');
}
文件夹结构
application/view/template
application/view/site
$this->load->view('template/header');
$this->load->view('site/dashboard');
$this->load->view('template/footer');
我在查看文件夹中有两个文件夹
Layout 文件夹:- 在这个文件夹中我创建了两个文件 header.php 和 footer.php
代理文件夹 :- 在这个文件夹中我有主文件 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');
}
文件夹结构
application/view/template
application/view/site
$this->load->view('template/header');
$this->load->view('site/dashboard');
$this->load->view('template/footer');