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.
我需要的是,我想保存一组不同的句子,并让其中一个在每次页面加载时随机显示。那可能吗?如果是,那么如何?
$a = array("red","green","blue","yellow","brown"); $random = array_rand($a); echo $a[$random] ;