gpt4 book ai didi

php - 将查询拆分到多个位置

转载 作者:行者123 更新时间:2023-11-29 19:14:39 25 4
gpt4 key购买 nike

我有一个网站,我需要拆分一个结果查询,该查询为我提供了所有组,因为我想单独处理所有组。

这是我的代码(结果 6 是我为获取所有组名称而进行的查询)。但问题是所有结果都出现在同一个位置 -> [0] 零。这是问题的图像Image problem

 <?php while ($row = mysqli_fetch_array($result6)){ ?>

<tr>
<?php if(strlen($row['groupname'])>0){ ?>

<?php $groups = $row['groupname'];
$dividedGroups= (explode(",",$groups));
print_r($dividedGroups)
?>
</br>
<?php } ?>
</tr>
<?php } ?>

最佳答案

我想需要更多数据,但据我所知,您将以数组数组结尾。

此行之后:

$dividedGroups= (explode(",",$groups));

尝试添加这两行以将其转换为简单数组:

$dividedGroups= array_map("array_shift",$dividedGroups);
$dividedGroups= array_map("array_values",$dividedGroups);

关于php - 将查询拆分到多个位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42806916/

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