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.
我有一个包含大约 100 个不同单词的文本文档,当用户单击按钮以查看我将如何执行此操作并显示文本文件中的字符串时,我希望随机显示这些单词?
$words = file('file.txt'); shuffle($words); echo $words[0];