如何构建一个 php 函数,将此代码转换为 html 菜单 这是我通过 ajax 对函数所做的帖子
list[0][id] 55
list[1][id] 69
list[2][children][0][id] 67
list[2][children][1][id] 68
list[2][id] 57
这是我进入函数的数组
Array
(
[0] => Array
(
[id] => 55
[children] => Array
(
[0] => Array
(
[id] => 67
[children] => Array
(
[0] => Array
(
[id] => 57
[children] => Array
(
[0] => Array
(
[id] => 68
)
)
)
[1] => Array
(
[id] => 69
)
)
)
)
)
)
我试过这个功能,但它不起作用
function tomenu($arr){
$html = '<ul>'.PHP_EOL;
foreach ($arr as $v){
$html .= '<li>' . $v['id'];
if (array_key_exists('children', $v)){
$html .= $this->tomenu($v['children']);
}
$html .= '</li>'.PHP_EOL;
}
$html .= '</ul>'.PHP_EOL;
return $html;
}
请帮我。