我试图在我制作的每个页面中包含一个php标头。据我所知,可以在每个文件中使用<?php include('header.php'); ?>
来完成。
现在我的问题是我有5页,在标题php中我有一个导航链接到每个页面。当我加载标题时,我想更改加载标题的文件的链接。
例如:如果我打开主页,我希望标题将标题导航内的链接加粗。 这可能要求我在包含它或smt时将变量发送到头文件?如果是这样,那怎么办? :d
先谢谢你,丹尼尔!
答案 0 :(得分:2)
您始终可以使用$_SERVER['SCRIPT_NAME']
获取所请求的最外层php文件的名称。你可以相应地改变导航中链接的风格,即:
<a href="some.php" style="font-weight: <?= $_SERVER["SCRIPT_NAME"] == '/some.php' ? 'bold' : 'normal' ?>">Link to Some</a>
<a href="other.php" style="font-weight: <?= $_SERVER["SCRIPT_NAME"] == '/other.php' ? 'bold' : 'normal' ?>">Link to Other</a>
答案 1 :(得分:2)
您可以通过在包含标题之前设置变量或查看URL来执行此操作。
简化示例:
$page = "home";
include "header.php"
在header.php
if ($page == "home") { ... }
以下代码将为您提供URL
中的文件名$basename = basename($_SERVER['REQUEST_URI']);
因此,如果您有http://mysite.com/index.php
,它会给您index.php
您可以在header.php
中使用此功能,与上述方法类似,以确定哪个链接为粗体。
答案 2 :(得分:2)
在下面的代码中,您可以将此类调用到其他页面并将页面名称作为参数传递,并且可以非常轻松地调用jQuery函数
<?php
class header {
function __construct($title = "Home", $page = 'home') {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php echo $title; ?></title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script>
$(document).ready(function(){
$('.<?php echo $page ?>').addClass('active');
});
</script>
</head>
<body>
<ul class="nav">
<li class="home"><a href="index.php"><br />HOME<br /></a></li>
<li class="about"><br />ABOUT US<br /></li>
</ul>
<?php }} ?>
答案 3 :(得分:1)
一种方法是从头文件中检查执行脚本的名称,如下所示(在header.php内):
$page = basename($_SERVER["REQUEST_URI"]);
if($page == 'index.php') {
//header included from inside index.php
}
elseif($page == 'contact.php') {
//header included from contact.php
}
...