PHP array_rand v5.2.10 的改组问题+
我最近刚刚将我的 PHP 更新到了新版本,并发现它使我的一些旧的、曾经有用的代码变得无用。也就是说,从 v5.2.10 开始,使用 array_rand“生成的键数组不再被打乱”,这就是问题所在。
以下代码不再起作用,也就是说,它不会像以前那样随机洗牌:
$in = array('foo_1|bar_1', 'foo_2|bar_2','foo_3|bar_3','foo_4|bar_4','foo_5|bar_5' );
foreach($in as &$r){
$r = explode("|", $r);
}
$rand = array_rand($in, 3);
//OUTPUTS:
$in[$rand[0]][0] //foo_1
$in[$rand[0]][1] //bar_1
$in[$rand[1]][0] //foo_3
$in[$rand[1]][1] //bar_3
$in[$rand[2]][0] //foo_5
$in[$rand[2]][1] //bar_5
知道如何恢复相同的功能吗?
谢谢。
I've just recently updated my PHP to a newer version and have discovered that it's rendered some of my older, once functional code useless. Namely, since v5.2.10 with array_rand "the resulting array of keys is no longer shuffled" and therein lies the problem.
The following code doesn't work anymore, that is, it doesn't randomly shuffle like it used to:
$in = array('foo_1|bar_1', 'foo_2|bar_2','foo_3|bar_3','foo_4|bar_4','foo_5|bar_5' );
foreach($in as &$r){
$r = explode("|", $r);
}
$rand = array_rand($in, 3);
//OUTPUTS:
$in[$rand[0]][0] //foo_1
$in[$rand[0]][1] //bar_1
$in[$rand[1]][0] //foo_3
$in[$rand[1]][1] //bar_3
$in[$rand[2]][0] //foo_5
$in[$rand[2]][1] //bar_5
Any idea how to get that same functionality back?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)