gpt4 book ai didi

php - 为什么我的 PHP 代码不起作用?

转载 作者:行者123 更新时间:2023-11-29 01:06:47 25 4
gpt4 key购买 nike

代码如下:

function swap(&$a, &$b)
{
list($a, $b) = array($b, $a);
}

for ($i=0; count($resultset);$i++)
{
for($j=1;$j<5;$j++)
{
$k = rand(1, 4);
swap($resultset[$i]["option".$j],$resultset[$i]["option".$k]);
}
}

这是一个来自 MySQL 查询的二维数组,我想打乱键为 option1、option2、option3 和 option4 的值。但是我的代码不起作用。我可以自己找到错误。请建议。提前致谢!

最佳答案

刚看到:

for ($i=0; count($resultset);$i++)

不应该吗

for ($i=0; $i < count($resultset);$i++)

您错过了 for 循环中的比较。

关于php - 为什么我的 PHP 代码不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1778223/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com