http://www.uw-team.org/hm3next/skrypty/szukaj.php?name=asd
刷新几次,看看它在做什么.
以及如何做这样的事情?我认为这与兰特有关,但我不能真的这样做.
如果我理解你的问题很少,那么你正在寻找的是:
$messages = array(
'This is the first message',
'This is the second message',
'This is the third message'
);
echo $messages[rand(0, count($messages) - 1)];
Run Code Online (Sandbox Code Playgroud)