サイト全体に header.php ファイルを配置したいと考えています。私は現在、次のものを持っています:
header.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);
}
index.php
<?php include_layout_template('header.php', "../"); ?>
しかし、$depth は消えます。$depth をエコーすることさえできません。ただ空白です。header.php で使用する深度変数を取得するにはどうすればよいですか?