gpt4 book ai didi

php - 如何为不同的 php 包含文件链接不同的样式表

转载 作者:太空宇宙 更新时间:2023-11-04 05:24:52 24 4
gpt4 key购买 nike

所以我将我的 index.php 页面分为三个部分:顶部、中间、底部。中间部分将有不同的 html php inlude 页面,因此需要不同的样式表。我是否在单独的 php 包含页面或索引页面中链接特定的样式表?因为在索引页面中,不同的样式表似乎没有生效,这是为什么?

最佳答案

假设您的 about 页面有一个自定义的 css 文件,您可以这样做:

关于.php

<?
$css = array('path_to_css_file', 'path_to_another_css_file');
require_once('header.php'); // aka the top
?>

[about page content goes here]

<?
require_once('footer.php'); // aka the bottom
?>

在您的 header.php 文件中,您可以这样做:

标题.php

<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="main_style_sheet.css" />
<?
if (isset($css) && is_array($css))
foreach ($css as $path)
printf('<link rel="stylesheet" type="text/css" href="%s" />', $path);
?>
</head>
<body>

这样您就可以只加载给定页面所需的内容。

关于php - 如何为不同的 php 包含文件链接不同的样式表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5347550/

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