每次刷新或访问页面时,我都希望此PHP变量的内容按随机顺序排列。
如
$test = 'a, b, c, d, e, f';
我想要最好的方式随机获取它,例如
$test = 'c, b, d, f, a, e';
$test = 'd, e, c, a, f, b';
任何解决方案?
答案 0 :(得分:6)
$test = 'a, b, c, d, e, f';
$testArray = explode(', ',$test); //explode to array
shuffle($testArray); //shuffle it up
echo implode(', ', $testArray); //show the shuffledlyness
答案 1 :(得分:4)