htdocs(root folder)>widget_corp>
public>(php file i need to include header.php in)
includes>layouts>header.php
我试图在公共php文件中包含header.php,但使用include
语句但它没有用。我应该在我的inlcude语句中包含header.php?
答案 0 :(得分:0)
如果您的文件夹结构如下:
public -> example.php
includes -> layouts -> header.php
打开example.php
时,您可以使用以下代码:
include "../includes/layours/header.php";
这将在您的header.php
文件中包含PHP example.php
文件。
注意: ../
表示转到父目录,./
表示当前目录,只是想在将来为您添加。