在 codeigniter 中包含函数
include function in codeigniter
最近开始学习codeigniter框架。我在包含另一个文件夹中的文件时遇到问题。在我的视图文件夹中,我有两个名为 patient 和 includes 的文件夹。如下图
观看次数
includes - it has two folders (front & back) - back folder has a file head.php.
patients - it has a file patient.php
现在我想在 patient.php 中包含 head.php。
当我使用(包括 'D:\XMPP\htdocs\codeigniter\application\views\includes\back\head.php')时,它有效。
但是当我使用(包括'../includes/back/head.php')时,它不起作用。
如何使第二个选项起作用?
谢谢。
尝试这条路线 - includes\back\head.php
<?php include VIEWPATH . "includes\back\head.php"; ?>
最近开始学习codeigniter框架。我在包含另一个文件夹中的文件时遇到问题。在我的视图文件夹中,我有两个名为 patient 和 includes 的文件夹。如下图
观看次数
includes - it has two folders (front & back) - back folder has a file head.php.
patients - it has a file patient.php
现在我想在 patient.php 中包含 head.php。
当我使用(包括 'D:\XMPP\htdocs\codeigniter\application\views\includes\back\head.php')时,它有效。
但是当我使用(包括'../includes/back/head.php')时,它不起作用。
如何使第二个选项起作用?
谢谢。
尝试这条路线 - includes\back\head.php
<?php include VIEWPATH . "includes\back\head.php"; ?>