[ create a new paste ] login | about

Link: http://codepad.org/MNoW94YU    [ raw code | output | fork ]

PHP, pasted on Dec 8:
<?php $data = array(
    3 => array(
        4 => array(
            7 => null,
            8 => array(
                9 => null
            )
        ),
        5 => null
    ),
    6 => null
);

function writeList($tree)
{
    if($tree == NULL) return;
    echo "<ul>";
    foreach($tree as $node=>$children)
        echo "<li>", $node, writeList($children), '</li>';
    echo "</ul>";
}

writeList($data);


Output:
1
<ul><li>3<ul><li>4<ul><li>7</li><li>8<ul><li>9</li></ul></li></ul></li><li>5</li></ul></li><li>6</li></ul>


Create a new paste based on this one


Comments: