gpt4 book ai didi

php - 使用 > 符号拆分关联数组并将其显示在列表 ion php 中

转载 作者:行者123 更新时间:2023-11-30 00:21:28 25 4
gpt4 key购买 nike

我开发了一个sql表,在其中放置与我的提要文件中的产品相关的详细信息。sql表中有一个名为类别名称的字段,其格式为类别1>类别2>类别3。我想要使用 > 符号分割此列并将其显示在列表中。

现在我将它们放入关联数组中,但我不知道如何拆分数组的类别元素并将其显示在列表中。

<?php
$firstsql='SELECT TOP 1 from xml where ('.implode('AND',$parts).')';
$firstsql3=mysql_query($firstsql);
$firstrow=array();
while($row = mysql_fetch_array($firstsql3)) {
// Append to the array
$firstrow[] = $row;
//echo $row['PID']."<BR />";
}

上面是我将顶部第一行放入数组中的代码片段,从中我必须获取数组的类别元素并将其显示在列表中。就像数组中的类别列就像 MEN>CLOTHING>SHOES我想像这样显示它

MEN
CLOTHING
SHOES

请指导我如何做到这一点..

最佳答案

如果我明白了,你就可以做到

$categories = explode(">",$row["category"]);
foreach ($categories as $category) {
// Do what you need with each $category, it will be "MEN", "CLOTHING" and "SHOES" each time
}

关于php - 使用 > 符号拆分关联数组并将其显示在列表 ion php 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23198795/

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