gpt4 book ai didi

php - 从数据库生成 CSS 类?

转载 作者:行者123 更新时间:2023-11-28 11:29:57 26 4
gpt4 key购买 nike

可以在我的应用程序中定义主要颜色和次要颜色(十六进制代码),这些都保存到数据库中。

例如,次要颜色用于链接。我不想说<a href="#" style="color: $fromDatabase">Text</a>而是<a href="#" class=secColor>Text</a>其中 .secColor有类似的东西

.secColor {
color: $fromDatabase;
}

顺便说一句,我正在使用 Laravel。

最佳答案

您可以使用以下代码将 .php 文件作为 css 包含在内:

index.html:

<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="style.php">
</head>
<body>
<!-- stuff goes here -->
</body>
</html>

样式.php:

<?php
header("Content-type: text/css");
?>
//DB Query
.secColor{
color: <?php echo $fromDatabase;?>
}

关于php - 从数据库生成 CSS 类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39569597/

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