Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$_SESSION['allCaps']=array("Calendar.png", "CD.png", "Chain.png");
在下一页,我需要随机播放这些元素,而不是 $_SESSION 本身。 那么,我怎样才能扭转这个过程:
$array = elements_from_$_SESSION['allCaps'] // Calendar.png...
$array = $_SESSION['allCaps']; shuffle($array);