gpt4 book ai didi

php - 从 PHP CSS 文件中取回 PHP 变量

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

我的问题是我无法从像这样从 index.php 加载的 CSS 文件访问 PHP 变量:

<link href="css/style.php" rel="stylesheet">

在 style.php 文件中,我有这个:

<?php header("Content-type: text/css; charset: UTF-8");

$myClassName = 'myClass'; ?>

.<?= $myClassName?> {
font-weight: bold;
}

在我的 index.php 中我有这个:

<span class='<?= $myClassName?>'>this is a text</span>

但是 $myClassName 返回一个空字符串,就好像它不存在一样……这确实意味着我不能像这样访问 PHP 变量……有人有什么窍门吗……?

我确实需要使用 css 文件 中的 PHP 变量设置 css 类名,并能够将它们返回到我的 index.php

最佳答案

在 header 下,执行 $css = $_GET['css']; 或将其替换为您初始化变量的位置。例如:

<?php 
header('Content-Type: text/css');
$css = $_GET['css'];
?>
body {
<?= $css ?>border-radius: 3px
}

关于php - 从 PHP CSS 文件中取回 PHP 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42242178/

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