我的 <head> 部分中有以下内容
<?php
$rand = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f');
$color = '#'.$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)];
?>
我的 <body> 中有以下内容
<div class="featured-details" style="background-color: <?php echo $color; ?>;">
当我的页面加载时,CSS 会显示以下内容:
<div style="background-color: ;" class="featured-details">
即似乎没有生成颜色。
任何人都可以帮忙吗?