I use php array_rand
to selected 1 arbitrary Records from range, 例:
$style_class = array("st_style1","st_style2","st_style3","st_style4");
$random_class = array_rand($style_class, 1);
$div_class = $style_class[$random_class];
问题在于,有时它有同样的记录,而且由于我只使用4个记录,它经常发生平静(使用“传闻”并非必然)。
例:
st_style1, st_style2, st_style2, st_style2, st_style4, st_style2 ...
如果能解决这个问题,那么两张记录不会连续两度出现。
例如
st2、中型4、中型2、中型2、中型1、中型3、中型2、中型1