Bu sonuç kümesinden bir dizi oluşturmak için nasıl (kastetmek modeli ile databased saklanan iç içe kategoriler)?

0 Cevap php

Based on this question: Getting a modified preorder tree traversal model (nested set) into a <ul>

Mantık feryat sıralı liste oluşturmak için kullanılan, ancak bir dizi ile aynı nasıl?

Ben iç içe bir dizi oluşturmak istiyorum.

// bootstrap loop
$result = '';
$currDepth = -1;  // -1 to get the outer <ul>
while (!empty($tree)) {
  $currNode = array_shift($tree);
  // Level down?
  if ($currNode['depth'] > $currDepth) {
    // Yes, open <ul>
    $result .= '<ul>';
  }
  // Level up?
  if ($currNode['depth'] < $currDepth) {
    // Yes, close n open <ul>
    $result .= str_repeat('</ul>', $currDepth - $currNode['depth']);
  }
  // Always add node
  $result .= '<li>' . $currNode['title'] . '</li>';
  // Adjust current depth
  $currDepth = $currNode['depth'];
  // Are we finished?
  if (empty($tree)) {
    // Yes, close n open <ul>
    $result .= str_repeat('</ul>', $currDepth + 1);
  }
}

print $result;

0 Cevap