码迷,mamicode.com
首页 > 编程语言 > 详细

PHP 怎么随机获取数组里面的值

时间:2015-08-18 18:01:58      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

 

注意array_rand随机返回的是KEY值的集合

<?php
srand((float) microtime() * 10000000);
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
print $input[$rand_keys[0]] . "\n";
print $input[$rand_keys[1]] . "\n";
?>

 

PHP 怎么随机获取数组里面的值

标签:

原文地址:http://www.cnblogs.com/kenshinobiy/p/4739520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!