我有以下 php 代码:
$menu_wood = array();
$menu_wood[] = array('link' => 'holz.php',
'description' => 'Holzübersicht',
'class' => isCurrentPage('holz.php')
);
$menu_wood[] = array('link' => 'ahorn.php',
'description' => 'Ahorn',
'class' => isCurrentPage('ahorn.php')
);
$menu_wood[] = array('link' => 'birke.php',
'description' => 'Birke',
'class' => isCurrentPage('birke.php')
);
PHP 中是否有一个内置函数可以返回所有“链接”元素的数组,还是我需要编写自己的函数?