这里有没有人知道如何从数组中随机输出字符串(随机输出字符串),我有这个数组(参见下文)
$cars = array("Volvo", "BMW", "Toyota");
function random_string(){
//here a function to randomize or shuffle the items from the $cars array
return $random_string;
}
echo random_string()
任何帮助,建议,建议,线索,想法都非常感谢。谢谢。
答案 0 :(得分:1)
您可以使用php rand()方法。
$random_string = $car[rand(0,count($car)-1)];
答案 1 :(得分:1)
$random_string = array("Volvo", "BMW", "Toyota");
shuffle($random_string);
print_r($random_string);
你可以尝试这个