如何在php中回显相同的句子随机时间?

时间:2016-11-15 02:35:21

标签: php

我需要在我的网页上实现此方法。每当有人刷新我的php网页时,我想随机回复相同的句子。

例如:Hello World!

1 个答案:

答案 0 :(得分:0)

你可以这样做:

<?php
$min = 1; // Minimum 1 time
$max = 10; // Maximum 10 times
$string = "Hello world!\n"; // Print Hello World! and a new line
$x = rand($min,$max); // Make the random
$i = 0; // Set the iterator
do {
  echo $string; // Echo the text
  $i = $i + 1; // Increment the iterator
} while ($i < $x); // Test to make sure we didn't do it too many times
?>

这个echo的“Hello world!”任何地方1到10次。您可以搜索PHP API以查看其工作原理。