有没有办法将 ul 标签添加到输出中?
<?php
$content = "";
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">' . "\n";
for ($i=0;$i<sizeof($box_categories_array);$i++) {
switch(true) {
// to make a specific category stand out define a new class in the stylesheet example: A.category-holiday
// uncomment the select below and set the cPath=3 to the cPath= your_categories_id
// many variations of this can be done
// case ($box_categories_array[$i]['path'] == 'cPath=3'):
// $new_style = 'category-holiday';
// break;
case ($box_categories_array[$i]['top'] == 'true'):
$new_style = 'category-top';
break;
case ($box_categories_array[$i]['has_sub_cat']):
$new_style = 'category-subs';
break;
default:
$new_style = 'category-products';
}
if (zen_get_product_types_to_category($box_categories_array[$i]['path']) == 3 or ($box_categories_array[$i]['top'] != 'true' and SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS != 1)) {
// skip if this is for the document box (==3)
} else {
$content .= '<li class="' . $new_style . '"><a href="' . zen_href_link(FILENAME_DEFAULT, $box_categories_array[$i]['path']) . '">';
if ($box_categories_array[$i]['current']) {
if ($box_categories_array[$i]['has_sub_cat']) {
$content .= '<span class="category-subs-parent">' . $box_categories_array[$i]['name'] . '</span>';
} else {
$content .= '<span class="category-subs-selected">' . $box_categories_array[$i]['name'] . '</span>';
}
} else {
$content .= $box_categories_array[$i]['name'];
}
if ($box_categories_array[$i]['has_sub_cat']) {
$content .= CATEGORIES_SEPARATOR;
}
$content .= '</a></li>';
if (SHOW_COUNTS == 'true') {
if ((CATEGORIES_COUNT_ZERO == '1' and $box_categories_array[$i]['count'] == 0) or $box_categories_array[$i]['count'] >= 1) {
$content .= CATEGORIES_COUNT_PREFIX . $box_categories_array[$i]['count'] . CATEGORIES_COUNT_SUFFIX;
}
}
$content .= "\n";
}
}
上面的html输出是这样的:
现在,我想在输出中添加一些 ul
标签。也就是说,当它位于category-top
并且有子类别时。我想让输出像这样。
<li class="category-top"> <a href="#">main category</a>
<ul>
<li class="category-topb"><a href="#">sub category</a></li>
<li class="category-topb"><a href="#">sub category</a></li>
<li class="category-topb"><a href="#">sub category</a></li>
</ul>
</li>
当它没有子类别时,输出如下
。
如何添加ul标签? 谢谢你!
Array
(
[0] => Array
(
[top] => true
[path] => cPath=1
[name] => Hardware
[has_sub_cat] => 1
)
[1] => Array
(
[top] => false
[path] => cPath=1_17
[name] => CDROM Drives
)
[2] => Array
(
[top] => false
[path] => cPath=1_4
[name] => Graphics Cards
)
[3] => Array
(
[top] => false
[path] => cPath=1_8
[name] => Keyboards
)
[4] => Array
(
[top] => false
[path] => cPath=1_16
[name] => Memory
)
[5] => Array
(
[top] => false
[path] => cPath=1_9
[name] => Mice
)
[6] => Array
(
[top] => false
[path] => cPath=1_6
[name] => Monitors
)
[7] => Array
(
[top] => false
[path] => cPath=1_5
[name] => Printers
)
[8] => Array
(
[top] => false
[path] => cPath=1_7
[name] => Speakers
)
[9] => Array
(
[top] => true
[path] => cPath=2
[name] => Software
[has_sub_cat] => 1
)
[10] => Array
(
[top] => false
[path] => cPath=2_19
[name] => Action
)
[11] => Array
(
[top] => false
[path] => cPath=2_18
[name] => Simulation
)
[12] => Array
(
[top] => false
[path] => cPath=2_20
[name] => Strategy
)
[13] => Array
(
[top] => true
[path] => cPath=3
[name] => DVD Movies
[has_sub_cat] => 1
)
[14] => Array
(
[top] => false
[path] => cPath=3_10
[name] => Action
)
[15] => Array
(
[top] => false
[path] => cPath=3_13
[name] => Cartoons
)
[16] => Array
(
[top] => false
[path] => cPath=3_12
[name] => Comedy
)
[17] => Array
(
[top] => false
[path] => cPath=3_15
[name] => Drama
)
[18] => Array
(
[top] => false
[path] => cPath=3_11
[name] => Science Fiction
)
[19] => Array
(
[top] => false
[path] => cPath=3_14
[name] => Thriller
)
[20] => Array
(
[top] => true
[path] => cPath=21
[name] => Gift Certificates
)
[21] => Array
(
[top] => true
[path] => cPath=22
[name] => Big Linked
)
[22] => Array
(
[top] => true
[path] => cPath=23
[name] => Test Examples
)
[23] => Array
(
[top] => true
[path] => cPath=24
[name] => Free Call Stuff
)
[24] => Array
(
[top] => true
[path] => cPath=33
[name] => A Top Level Cat
[has_sub_cat] => 1
)
[25] => Array
(
[top] => false
[path] => cPath=33_34
[name] => SubLevel 2 A
[has_sub_cat] => 1
)
[26] => Array
(
[top] => false
[path] => cPath=33_34_40
[name] => Sub Sub Cat 2A1
)
[27] => Array
(
[top] => false
[path] => cPath=33_34_43
[name] => Sub Sub Cat 2A2
)
[28] => Array
(
[top] => false
[path] => cPath=33_35
[name] => SubLevel 2 B
[has_sub_cat] => 1
)
[29] => Array
(
[top] => false
[path] => cPath=33_35_37
[name] => Sub Sub Cat 2B1
)
[30] => Array
(
[top] => false
[path] => cPath=33_35_38
[name] => Sub Sub Cat 2B2
)
[31] => Array
(
[top] => false
[path] => cPath=33_35_39
[name] => Sub Sub Cat 2B3
)
[32] => Array
(
[top] => false
[path] => cPath=33_36
[name] => SubLevel 2 C
[has_sub_cat] => 1
)
[33] => Array
(
[top] => false
[path] => cPath=33_36_41
[name] => Sub Sub Cat 2C1
)
[34] => Array
(
[top] => false
[path] => cPath=33_36_44
[name] => Sub Sub Cat 2C2
)
[35] => Array
(
[top] => false
[path] => cPath=33_36_42
[name] => Sub Sub Cat 2C3
)
[36] => Array
(
[top] => true
[path] => cPath=48
[name] => Sale Percentage
[has_sub_cat] => 1
)
[37] => Array
(
[top] => false
[path] => cPath=48_45
[name] => 10% off
)
[38] => Array
(
[top] => false
[path] => cPath=48_47
[name] => 10% off Attrib
)
[39] => Array
(
[top] => false
[path] => cPath=48_31
[name] => 10% off Skip
)
[40] => Array
(
[top] => false
[path] => cPath=48_32
[name] => 10% off Price
)
[41] => Array
(
[top] => true
[path] => cPath=49
[name] => Sale Deduction
[has_sub_cat] => 1
)
[42] => Array
(
[top] => false
[path] => cPath=49_27
[name] => $5.00 off
)
......
<?php
$content = "";
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">' . "\n";
for ($i=0;$i<sizeof($box_categories_array);$i++) {
switch(true) {
// to make a specific category stand out define a new class in the stylesheet example: A.category-holiday
// uncomment the select below and set the cPath=3 to the cPath= your_categories_id
// many variations of this can be done
// case ($box_categories_array[$i]['path'] == 'cPath=3'):
// $new_style = 'category-holiday';
// break;
case ($box_categories_array[$i]['top'] == 'true'):
$new_style = 'category-top';
break;
case ($box_categories_array[$i]['has_sub_cat']):
$new_style = 'category-subs';
break;
default:
$new_style = 'category-products';
}
if (zen_get_product_types_to_category($box_categories_array[$i]['path']) == 3 or ($box_categories_array[$i]['top'] != 'true' and SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS != 1)) {
// skip if this is for the document box (==3)
} else {
$content .= '<li class="' . $new_style . '"><a href="' . zen_href_link(FILENAME_DEFAULT, $box_categories_array[$i]['path']) . '">';
if ($box_categories_array[$i]['current']) {
if ($box_categories_array[$i]['has_sub_cat']) {
$content .= '<span class="category-subs-parent">' . $box_categories_array[$i]['name'] . '</span>';
} else {
$content .= '<span class="category-subs-selected">' . $box_categories_array[$i]['name'] . '</span>';
}
} else {
$content .= $box_categories_array[$i]['name'];
}
if ($box_categories_array[$i]['has_sub_cat']) {
$content .= CATEGORIES_SEPARATOR;
}
$content .= '</a></li>';
if (SHOW_COUNTS == 'true') {
if ((CATEGORIES_COUNT_ZERO == '1' and $box_categories_array[$i]['count'] == 0) or $box_categories_array[$i]['count'] >= 1) {
$content .= CATEGORIES_COUNT_PREFIX . $box_categories_array[$i]['count'] . CATEGORIES_COUNT_SUFFIX;
}
}
$content .= "\n";
}
}
the above html output like this:
Now, I want to add some ul
label into the output. Namely, when it's category-top
and have sub category. I want to make the output like this.
<li class="category-top"> <a href="#">main category</a>
<ul>
<li class="category-topb"><a href="#">sub category</a></li>
<li class="category-topb"><a href="#">sub category</a></li>
<li class="category-topb"><a href="#">sub category</a></li>
</ul>
</li>
When it doesn't have sub category the output is like this <li class="category-top"> <a href="#">...</a></li>
.
How to add the ul label?
Thank you!
Array
(
[0] => Array
(
[top] => true
[path] => cPath=1
[name] => Hardware
[has_sub_cat] => 1
)
[1] => Array
(
[top] => false
[path] => cPath=1_17
[name] => CDROM Drives
)
[2] => Array
(
[top] => false
[path] => cPath=1_4
[name] => Graphics Cards
)
[3] => Array
(
[top] => false
[path] => cPath=1_8
[name] => Keyboards
)
[4] => Array
(
[top] => false
[path] => cPath=1_16
[name] => Memory
)
[5] => Array
(
[top] => false
[path] => cPath=1_9
[name] => Mice
)
[6] => Array
(
[top] => false
[path] => cPath=1_6
[name] => Monitors
)
[7] => Array
(
[top] => false
[path] => cPath=1_5
[name] => Printers
)
[8] => Array
(
[top] => false
[path] => cPath=1_7
[name] => Speakers
)
[9] => Array
(
[top] => true
[path] => cPath=2
[name] => Software
[has_sub_cat] => 1
)
[10] => Array
(
[top] => false
[path] => cPath=2_19
[name] => Action
)
[11] => Array
(
[top] => false
[path] => cPath=2_18
[name] => Simulation
)
[12] => Array
(
[top] => false
[path] => cPath=2_20
[name] => Strategy
)
[13] => Array
(
[top] => true
[path] => cPath=3
[name] => DVD Movies
[has_sub_cat] => 1
)
[14] => Array
(
[top] => false
[path] => cPath=3_10
[name] => Action
)
[15] => Array
(
[top] => false
[path] => cPath=3_13
[name] => Cartoons
)
[16] => Array
(
[top] => false
[path] => cPath=3_12
[name] => Comedy
)
[17] => Array
(
[top] => false
[path] => cPath=3_15
[name] => Drama
)
[18] => Array
(
[top] => false
[path] => cPath=3_11
[name] => Science Fiction
)
[19] => Array
(
[top] => false
[path] => cPath=3_14
[name] => Thriller
)
[20] => Array
(
[top] => true
[path] => cPath=21
[name] => Gift Certificates
)
[21] => Array
(
[top] => true
[path] => cPath=22
[name] => Big Linked
)
[22] => Array
(
[top] => true
[path] => cPath=23
[name] => Test Examples
)
[23] => Array
(
[top] => true
[path] => cPath=24
[name] => Free Call Stuff
)
[24] => Array
(
[top] => true
[path] => cPath=33
[name] => A Top Level Cat
[has_sub_cat] => 1
)
[25] => Array
(
[top] => false
[path] => cPath=33_34
[name] => SubLevel 2 A
[has_sub_cat] => 1
)
[26] => Array
(
[top] => false
[path] => cPath=33_34_40
[name] => Sub Sub Cat 2A1
)
[27] => Array
(
[top] => false
[path] => cPath=33_34_43
[name] => Sub Sub Cat 2A2
)
[28] => Array
(
[top] => false
[path] => cPath=33_35
[name] => SubLevel 2 B
[has_sub_cat] => 1
)
[29] => Array
(
[top] => false
[path] => cPath=33_35_37
[name] => Sub Sub Cat 2B1
)
[30] => Array
(
[top] => false
[path] => cPath=33_35_38
[name] => Sub Sub Cat 2B2
)
[31] => Array
(
[top] => false
[path] => cPath=33_35_39
[name] => Sub Sub Cat 2B3
)
[32] => Array
(
[top] => false
[path] => cPath=33_36
[name] => SubLevel 2 C
[has_sub_cat] => 1
)
[33] => Array
(
[top] => false
[path] => cPath=33_36_41
[name] => Sub Sub Cat 2C1
)
[34] => Array
(
[top] => false
[path] => cPath=33_36_44
[name] => Sub Sub Cat 2C2
)
[35] => Array
(
[top] => false
[path] => cPath=33_36_42
[name] => Sub Sub Cat 2C3
)
[36] => Array
(
[top] => true
[path] => cPath=48
[name] => Sale Percentage
[has_sub_cat] => 1
)
[37] => Array
(
[top] => false
[path] => cPath=48_45
[name] => 10% off
)
[38] => Array
(
[top] => false
[path] => cPath=48_47
[name] => 10% off Attrib
)
[39] => Array
(
[top] => false
[path] => cPath=48_31
[name] => 10% off Skip
)
[40] => Array
(
[top] => false
[path] => cPath=48_32
[name] => 10% off Price
)
[41] => Array
(
[top] => true
[path] => cPath=49
[name] => Sale Deduction
[has_sub_cat] => 1
)
[42] => Array
(
[top] => false
[path] => cPath=49_27
[name] => $5.00 off
)
......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
输出中仍然没有任何
ul
。echo sizeof($box_categories_array);
显示58
echo $box_categories_array[2]['top']
显示false
There is still no any
ul
in the output.echo sizeof($box_categories_array);
shows58
echo $box_categories_array[2]['top']
showsfalse