Ben işlevi için bu adresi bahsediyorum olLiTree
http://stackoverflow.com/questions/753853/php-function-that-creates-a-nested-ul-li
i bu dizi var
$tree = array("A"=>array("B"=>array("C"=>"C","D"=>"D"),"E"=>array("F"=>"F","G"=>"G")));
ama mümkün değil, bu işlevi kullanmak için
function olLiTree($tree)
{
echo '<ul>';
foreach($tree as $item) {
if (is_array($item)) {
olLiTree($item);
} else {
echo '<li>', $item, '</li>';
}
}
echo '</ul>';
}
üretmek için
<ul>
<li>A</li>
<li>B
<ul>
<li>C</li>
<li>D</li>
</ul>
</li>
<li>E
<ul>
<li>F
</li>
</ul>
</li>
<ul>
<li>G</li>
</ul>
</ul>
can anybody help me to fix this? thanks..