【问题标题】:Is there a way to add the ul label to the output?有没有办法将 ul 标签添加到输出中?
【发布时间】:2011-12-17 16:31:17
【问题描述】:
<?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>

当它没有子类别时,输出是这样的&lt;li class="category-top"&gt; &lt;a href="#"&gt;...&lt;/a&gt;&lt;/li&gt;

如何添加ul标签? 谢谢!

Array
(
    [0] => Array
        (
            [top] => true
            [path] => cPath=1
            [name] => Hardware
            [has_sub_cat] => 1
        )

    [1] => Array
        (
            [top] => false
            [path] => cPath=1_17
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;CDROM Drives
        )

    [2] => Array
        (
            [top] => false
            [path] => cPath=1_4
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Graphics Cards
        )

    [3] => Array
        (
            [top] => false
            [path] => cPath=1_8
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Keyboards
        )

    [4] => Array
        (
            [top] => false
            [path] => cPath=1_16
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Memory
        )

    [5] => Array
        (
            [top] => false
            [path] => cPath=1_9
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Mice
        )

    [6] => Array
        (
            [top] => false
            [path] => cPath=1_6
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Monitors
        )

    [7] => Array
        (
            [top] => false
            [path] => cPath=1_5
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Printers
        )

    [8] => Array
        (
            [top] => false
            [path] => cPath=1_7
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Speakers
        )

    [9] => Array
        (
            [top] => true
            [path] => cPath=2
            [name] => Software
            [has_sub_cat] => 1
        )

    [10] => Array
        (
            [top] => false
            [path] => cPath=2_19
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Action
        )

    [11] => Array
        (
            [top] => false
            [path] => cPath=2_18
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Simulation
        )

    [12] => Array
        (
            [top] => false
            [path] => cPath=2_20
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Strategy
        )

    [13] => Array
        (
            [top] => true
            [path] => cPath=3
            [name] => DVD Movies
            [has_sub_cat] => 1
        )

    [14] => Array
        (
            [top] => false
            [path] => cPath=3_10
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Action
        )

    [15] => Array
        (
            [top] => false
            [path] => cPath=3_13
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Cartoons
        )

    [16] => Array
        (
            [top] => false
            [path] => cPath=3_12
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Comedy
        )

    [17] => Array
        (
            [top] => false
            [path] => cPath=3_15
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Drama
        )

    [18] => Array
        (
            [top] => false
            [path] => cPath=3_11
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;Science Fiction
        )

    [19] => Array
        (
            [top] => false
            [path] => cPath=3_14
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;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] => &nbsp;&nbsp;&nbsp;&nbsp;SubLevel 2 A
            [has_sub_cat] => 1
        )

    [26] => Array
        (
            [top] => false
            [path] => cPath=33_34_40
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2A1
        )

    [27] => Array
        (
            [top] => false
            [path] => cPath=33_34_43
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2A2
        )

    [28] => Array
        (
            [top] => false
            [path] => cPath=33_35
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;SubLevel 2 B
            [has_sub_cat] => 1
        )

    [29] => Array
        (
            [top] => false
            [path] => cPath=33_35_37
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2B1
        )

    [30] => Array
        (
            [top] => false
            [path] => cPath=33_35_38
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2B2
        )

    [31] => Array
        (
            [top] => false
            [path] => cPath=33_35_39
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2B3
        )

    [32] => Array
        (
            [top] => false
            [path] => cPath=33_36
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;SubLevel 2 C
            [has_sub_cat] => 1
        )

    [33] => Array
        (
            [top] => false
            [path] => cPath=33_36_41
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2C1
        )

    [34] => Array
        (
            [top] => false
            [path] => cPath=33_36_44
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2C2
        )

    [35] => Array
        (
            [top] => false
            [path] => cPath=33_36_42
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;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] => &nbsp;&nbsp;&nbsp;&nbsp;10% off
        )

    [38] => Array
        (
            [top] => false
            [path] => cPath=48_47
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;10% off Attrib
        )

    [39] => Array
        (
            [top] => false
            [path] => cPath=48_31
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;10% off Skip
        )

    [40] => Array
        (
            [top] => false
            [path] => cPath=48_32
            [name] => &nbsp;&nbsp;&nbsp;&nbsp;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] => &nbsp;&nbsp;&nbsp;&nbsp;$5.00 off
        )
......

【问题讨论】:

  • 你有没有解决这个问题?我有同样的问题,请帮助我

标签: php zen-cart


【解决方案1】:
<?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;
      }

      /* ADDED THIS */
      $content .= '</a>';
      if($i+1 < sizeof($box_categories_array) && $box_categories_array[$i+1]['has_sub_cat'] && $new_style == 'category-top') // new UL
      {
        $content .= '<ul>';
      }
      elseif(($i+1 < sizeof($box_categories_array) && !$box_categories_array[$i+1]['has_sub_cat'] && $new_style == 'category-subs') || $i+1 == sizeof($box_categories_array)) // new UL
      {
        $content .= '</ul></li>';
      }
      else
        $content .= '</li>';
      /* UNTIL HERE */


      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";
    }
  }

【讨论】:

  • 发现一个错字。请重试。
  • 对不起,它只将ul添加到第一个子类别,我想将ul添加到第一个子类别,在最后一个子类别之后
  • samura,如果我想添加 ul 标签以包含所有子类别。当子类别没有子子类别时。
  • ...
  • 我该怎么做。
  • 你是对的。代码是一个谎言:P 请试试这个(全新的)版本。没有测试有点困难。
  • 对不起,新代码没有输出任何ul。现在,不要考虑子类别是否可能包含子子类别。假设只有一个级别的类别。 (主类别->子类别)。我想将 ul 添加到子类别中。
  • 主类
  • 我该怎么办?
    【解决方案2】:
    <?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>';
          if($i+1 < sizeof($box_categories_array) && !$box_categories_array[$i+1]['top'] && $box_categories_array[$i]['top']) // new UL
          {
            $content .= '<ul>';
          }
          elseif(($i+1 < sizeof($box_categories_array) && $box_categories_array[$i+1]['top'] && !$box_categories_array[$i]['top']) || $i+1 == sizeof($box_categories_array)) // new UL
          {
            $content .= '</ul></li>';
          }
          else
            $content .= '</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";
        }
      }
    

    【讨论】:

    • 我创建了这个新版本。请尝试。
    • 谢谢,但输出中仍有 ul 。我把截图放在下面,
    【解决方案3】:

    输出中仍然没有任何ul

    echo sizeof($box_categories_array); 显示58

    echo $box_categories_array[2]['top'] 显示false

    print_r($box_categories_array) results:
    <pre>Array
    (
        [0] => Array
            (
                [top] => true
                [path] => cPath=1
                [name] => Hardware
                [has_sub_cat] => 1
            )
    
        [1] => Array
            (
                [top] => false
                [path] => cPath=1_17
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;CDROM Drives
            )
    
        [2] => Array
            (
                [top] => false
                [path] => cPath=1_4
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Graphics Cards
            )
    
        [3] => Array
            (
                [top] => false
                [path] => cPath=1_8
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Keyboards
            )
    
        [4] => Array
            (
                [top] => false
                [path] => cPath=1_16
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Memory
            )
    
        [5] => Array
            (
                [top] => false
                [path] => cPath=1_9
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Mice
            )
    
        [6] => Array
            (
                [top] => false
                [path] => cPath=1_6
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Monitors
            )
    
        [7] => Array
            (
                [top] => false
                [path] => cPath=1_5
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Printers
            )
    
        [8] => Array
            (
                [top] => false
                [path] => cPath=1_7
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Speakers
            )
    
        [9] => Array
            (
                [top] => true
                [path] => cPath=2
                [name] => Software
                [has_sub_cat] => 1
            )
    
        [10] => Array
            (
                [top] => false
                [path] => cPath=2_19
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Action
            )
    
        [11] => Array
            (
                [top] => false
                [path] => cPath=2_18
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Simulation
            )
    
        [12] => Array
            (
                [top] => false
                [path] => cPath=2_20
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Strategy
            )
    
        [13] => Array
            (
                [top] => true
                [path] => cPath=3
                [name] => DVD Movies
                [has_sub_cat] => 1
            )
    
        [14] => Array
            (
                [top] => false
                [path] => cPath=3_10
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Action
            )
    
        [15] => Array
            (
                [top] => false
                [path] => cPath=3_13
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Cartoons
            )
    
        [16] => Array
            (
                [top] => false
                [path] => cPath=3_12
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Comedy
            )
    
        [17] => Array
            (
                [top] => false
                [path] => cPath=3_15
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Drama
            )
    
        [18] => Array
            (
                [top] => false
                [path] => cPath=3_11
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Science Fiction
            )
    
        [19] => Array
            (
                [top] => false
                [path] => cPath=3_14
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;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] => &nbsp;&nbsp;&nbsp;&nbsp;SubLevel 2 A
                [has_sub_cat] => 1
            )
    
        [26] => Array
            (
                [top] => false
                [path] => cPath=33_34_40
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2A1
            )
    
        [27] => Array
            (
                [top] => false
                [path] => cPath=33_34_43
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2A2
            )
    
        [28] => Array
            (
                [top] => false
                [path] => cPath=33_35
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;SubLevel 2 B
                [has_sub_cat] => 1
            )
    
        [29] => Array
            (
                [top] => false
                [path] => cPath=33_35_37
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2B1
            )
    
        [30] => Array
            (
                [top] => false
                [path] => cPath=33_35_38
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2B2
            )
    
        [31] => Array
            (
                [top] => false
                [path] => cPath=33_35_39
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2B3
            )
    
        [32] => Array
            (
                [top] => false
                [path] => cPath=33_36
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;SubLevel 2 C
                [has_sub_cat] => 1
            )
    
        [33] => Array
            (
                [top] => false
                [path] => cPath=33_36_41
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2C1
            )
    
        [34] => Array
            (
                [top] => false
                [path] => cPath=33_36_44
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sub Sub Cat 2C2
            )
    
        [35] => Array
            (
                [top] => false
                [path] => cPath=33_36_42
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;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] => &nbsp;&nbsp;&nbsp;&nbsp;10% off
            )
    
        [38] => Array
            (
                [top] => false
                [path] => cPath=48_47
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;10% off Attrib
            )
    
        [39] => Array
            (
                [top] => false
                [path] => cPath=48_31
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;10% off Skip
            )
    
        [40] => Array
            (
                [top] => false
                [path] => cPath=48_32
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;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] => &nbsp;&nbsp;&nbsp;&nbsp;$5.00 off
            )
    
        [43] => Array
            (
                [top] => false
                [path] => cPath=49_52
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;$5.00 off Skip
            )
    
        [44] => Array
            (
                [top] => true
                [path] => cPath=50
                [name] => Sale New Price
                [has_sub_cat] => 1
            )
    
        [45] => Array
            (
                [top] => false
                [path] => cPath=50_46
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Set $100
            )
    
        [46] => Array
            (
                [top] => false
                [path] => cPath=50_51
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Set $100 Skip
            )
    
        [47] => Array
            (
                [top] => true
                [path] => cPath=53
                [name] => Big Unlinked
            )
    
        [48] => Array
            (
                [top] => true
                [path] => cPath=54
                [name] => New v1.2
                [has_sub_cat] => 1
            )
    
        [49] => Array
            (
                [top] => false
                [path] => cPath=54_56
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Attributes
            )
    
        [50] => Array
            (
                [top] => false
                [path] => cPath=54_55
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Discount Qty
            )
    
        [51] => Array
            (
                [top] => false
                [path] => cPath=54_60
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Downloads
            )
    
        [52] => Array
            (
                [top] => false
                [path] => cPath=54_57
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Text Pricing
            )
    
        [53] => Array
            (
                [top] => false
                [path] => cPath=54_61
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Real
            )
    
        [54] => Array
            (
                [top] => false
                [path] => cPath=54_58
                [name] => &nbsp;&nbsp;&nbsp;&nbsp;Real Sale
            )
    
        [55] => Array
            (
                [top] => true
                [path] => cPath=62
                [name] => Music
            )
    
        [56] => Array
            (
                [top] => true
                [path] => cPath=63
                [name] => Documents
            )
    
        [57] => Array
            (
                [top] => true
                [path] => cPath=64
                [name] => Mixed Product Types
            )
    
    )
    

    【讨论】:

    • 请打开第一个+&lt;li class="category-top"&gt;
        应该在里面。
    猜你喜欢
    相关资源
    最近更新 更多
    热门标签