我希望基于类中的功能动态构建菜单。
每个类都应具有某种标记菜单中包含内容的方法。 每种方法都应在菜单中使用某种方式包含标志。 如何最好地实现这一目标?
<?php
class foo{
const MENUITEM = 1;
public function index(){
// something here to flag inclusion in the menu
}
public function show(){
// this function is not included in the menu
}
}