gpt4 book ai didi

php - 如何在php中爆破mysql表数据

转载 作者:行者123 更新时间:2023-11-29 02:51:28 25 4
gpt4 key购买 nike

在mysql表表数据中,一列有多个值是这样的,

code  name
1,2,3 a
4 b

我想要的输出将是

code name
1 a
2 a
3 a
4 b

这是我的代码:

$sql="SELECT * FROM hsc_sub group by sub_name order by sub_code";
$res = app_db_query($app,$sql);
while($row = mysqli_fetch_assoc($res)){
//enter code here
$subj[] = $row;
$subj[] = explode(",",$row['sub_code']);
}

最佳答案

在 ForEach 循环中,我们可以实现您的要求。

$subCode[];
$name[];


echo("Code");
echo("\t");
echo("Name");
echo("\n");

$sql="SELECT * FROM hsc_sub group by sub_name order by sub_code";
$res = app_db_query($app,$sql);
while($row = mysqli_fetch_assoc($res)){
$nm = $row['sub_name']
$sub[] = explode(",",$row['sub_code']);
foreach($sub as $item)
{
$name.push($nm);
$subCode.push($item);

echo($item);
echo("\t");
echo($nm);
echo("\n");
}
}

关于php - 如何在php中爆破mysql表数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35220732/

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