我在构建菜单时遇到问题,我想创建一个这样的类:
class leftMenu{
public $items;
function addItem ($num){
for($i = 0; $i < count($num); $i++){
$this->items[$i] += $num;
echo $this->items[$i];
}
}
public function __destruct() {
//echo "\n</body>\n</html>";
}
}
我想像数组一样调用 addItem ,例如:
$menu = new leftMenu();
$menu->addItem("one", "two", "three"); // Here 1, 2, 3 should be an array
我不能让它工作......请帮助!ND