1
我希望每次頁面刷新或訪問時,都要將此PHP變量的內容隨機排列。隨機順序的可變內容
如
$test = 'a, b, c, d, e, f';
我想它隨機最好的辦法,例如
$test = 'c, b, d, f, a, e';
$test = 'd, e, c, a, f, b';
任何解決方案?
我希望每次頁面刷新或訪問時,都要將此PHP變量的內容隨機排列。隨機順序的可變內容
如
$test = 'a, b, c, d, e, f';
我想它隨機最好的辦法,例如
$test = 'c, b, d, f, a, e';
$test = 'd, e, c, a, f, b';
任何解決方案?
$test = 'a, b, c, d, e, f';
$testArray = explode(', ',$test); //explode to array
shuffle($testArray); //shuffle it up
echo implode(', ', $testArray); //show the shuffledlyness
您是否嘗試過自己什麼? – 2012-04-11 20:09:02
http://us2.php.net/manual/en/function.rand.php – 2012-04-11 20:09:04
@Paul比'rand()'有更簡單的方法。數組到'shuffle()'是我開始的地方... – 2012-04-11 20:10:34