gpt4 book ai didi

php - 创建 PHP 页眉/页脚

转载 作者:IT王子 更新时间:2023-10-29 00:14:16 25 4
gpt4 key购买 nike

我正在为 friend 设计一个相对简单的网站。我想 impliment php 这样他就可以更改页眉/页脚而不必返回每个文件。问题是,我几乎完全不熟悉 php 的工作原理。有没有简单的方法来做到这一点?我已经看到了一些关于如何制作 php header 的答案,但它们看起来都不一样,而且我没有取得太大的成功。我并不是说它们不起作用(我可能做错了),但在这种情况下越简单越好。

谢谢!

最佳答案

除了仅使用 include()include_once() 来包含页眉和页脚之外,我发现的一件事是能够拥有自定义页面标题或要为每个页面包含的自定义标题标签,但仍然在部分包含中包含标题。我通常按​​如下方式完成此操作:

在站点页面中:

<?php

$PageTitle="New Page Title";

function customPageHeader(){?>
<!--Arbitrary HTML Tags-->
<?php }

include_once('header.php');

//body contents go here

include_once('footer.php');
?>

并且,在 header.php 文件中:

<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title><?= isset($PageTitle) ? $PageTitle : "Default Title"?></title>
<!-- Additional tags here -->
<?php if (function_exists('customPageHeader')){
customPageHeader();
}?>
</head>
<body>

可能有点超出您最初问题的范围,但允许包含更多灵 active 是有用的。

关于php - 创建 PHP 页眉/页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8054638/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com