Home >php教程 >php手册 >php随机输出数组元素

php随机输出数组元素

WBOY
WBOYOriginal
2016-06-06 19:35:281122browse

无详细内容 无 ?php$numbers = array('1','2','3','4','5');srand((float)microtime()*1000000);shuffle($numbers);while (list(,$number) = each($numbers)) {echo $number."br/";}?

<?php

	$numbers = array('1','2','3','4','5');
	srand((float)microtime()*1000000);	
	shuffle($numbers);
	while (list(,$number) = each($numbers)) {
		echo $number."<br/>";
	}

?>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn