在/application的common.php最下方加入
// 随机颜色 function randrgb() { $str='0123456789ABCDEF'; $estr='#'; $len=strlen($str); for($i=1;$i<=6;$i++) { $num=rand(0,$len-1); $estr=$estr.$str[$num]; } return $estr; }
在模板中使用:
style="background: {:randrgb()}" style="color: {:randrgb()}"
做一些按钮用得上