我想在我的网站上有一个 header.php 文件。我目前有以下内容:
头文件.php
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="<?php if(isset($depth)){echo $depth;};?>css/style.css">
函数.php
function include_layout_template($template="", $depth="")
{
global $depth;
include(SITE_ROOT.DS.'public'.DS.'layouts'.DS.$template);
}
索引.php
<?php include_layout_template('header.php', "../"); ?>
但是 $depth 消失了,我什至无法回显 $depth; 它只是空白。如何获取用于 header.php 的深度变量?