PHP array_rand v5.2.10 的改组问题+

发布于 2024-11-03 11:32:09 字数 535 浏览 1 评论 0原文

我最近刚刚将我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凹づ凸ル 2024-11-10 11:32:09
$rand = array_rand($in, 3);
shuffle($rand);
$rand = array_rand($in, 3);
shuffle($rand);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文