我如何将自定义 php 函数的输出设置为变量?
功能是:
function getRandomColor1() {
global $cols;
$num_cols = count($cols);
$rand = array_rand($cols);
$rand_col = $cols[$rand];
echo $rand_col;
unset($cols[$rand]);
}
我如何设置 getRandomColor1 等于 $RandomColor1?
我需要它是一个变量,所以我可以在 css 中使用它,例如:
#boxone1 {
height: 150px;
width: 150px;
background: <?=$RandomColor1?>;
float: left;
}
如果无法将其设置为变量,我还能如何将函数的输出放入 css 中?