Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8781921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:26:05+00:00 2026-06-13T20:26:05+00:00

I am exercising some PHP OOP and therefore I am creating a class to

  • 0

I am exercising some PHP OOP and therefore I am creating a class to create a simple navigation menu ( with extensions in the future ) now I have build this class that works kinda.. with 1 menu item tough.. I don;t know how to use arrays in my class to use the class like

<?php
$menu = new Navigation("Test", "mainmenu");

$menu->setMenuItem("home", "test");
echo $menu->display();

?>

as you see I should be able to give each menu item with the setMenuItem(); method.
but since it does not use Arrays at the moment I only get the first value

The class itself is as follows:

<?php
class Navigation implements navigationInterface {

    public $menu = null;
    public $name = null;
    public $klasse = null;

    public function __construct($name, $klasse) {

        $this->name = $name;
        $this->klasse = $klasse;

    }

    public function getName() {
        return $this->name;
    }

    public function getClass() {
        return $this->klasse;
    }

    public function setMenuItem($items) {
        $this->menuItem = $items;
    }

    public function getMenuItem() {
        return $this->menuItem;
    }

    public function display() {

        $menu = '<nav class="' . $this->getName() . '">';
        $menu .= '<li><a class="' . $this->getClass() . '" href="index.php?page=' . $this->getMenuItem() . '.php">' . $this->getMenuItem() . '</a></li>';
        $menu .= '</nav>';

        return $menu;

    }
}
?>

who can show me how to use arrays within the class in combination with a loop to create a menu with all given values?

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T20:26:06+00:00Added an answer on June 13, 2026 at 8:26 pm
    <?php
    class Navigation{
    
        public $menu = null;
        public $name = null;
        public $klasse = null;
    
        public function __construct($name, $klasse) {
    
            $this->name = $name;
            $this->klasse = $klasse;
    
        }
    
        public function getName() {
            return $this->name;
        }
    
        public function getClass() {
            return $this->klasse;
        }
    
        public function setMenuItem($items) {
    
            $this->menuItem = $items;
        }
    
        public function getMenuItem($menu) {
            return $menu;
        }
    
        public function display() {
    
            $menu = '<nav class="' . $this->getName() . '">';
            if(is_array($this->menuItem))
            {
            foreach($this->menuItem as $val)
            {
            $menu .= '<li><a class="' . $this->getClass() . '" href="index.php?page=' . $this->getMenuItem($val) . '.php">' . $this->getMenuItem($val) . '</a></li>';
            }
            }
            else{
                $menu .= '<li><a class="' . $this->getClass() . '" href="index.php?page=' . $this->getMenuItem($this->menuItem) . '.php">' . $this->getMenuItem($this->menuItem) . '</a></li>';
    
            }
    
    
            $menu .= '</nav>';
    
            return $menu;
    
        }
    }
    ?>
    
    <?php
    $menu = new Navigation("Test", "mainmenu");
    
    $menu_items=array("home","test");
    $menu->setMenuItem($menu_items);
    
    echo $menu->display();
    
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

While exercising your DDD skills, suppose you have object like this: class Person {
I have a Game class that has a -(void) play method which will be
I have a website which i created from scratch. I want to now add
I am learning SQL Server by exercising some problems. In one of that problems
I'm exercising the UITextChecker class to do a quick check on a string for
I've been exercising my skills by making a Space Invaders clone. I asked a
I'm working with the jQuery ColorPicker widget - specifically exercising the ColorPickerSetColor function (just
I've made an iPhone app to be used while exercising. It plays a bell
function symbol_handler(){ fp.getForm().submit({ url:'/index.php/ajax/test_function', success:function(resp){ //how would i access attributes of the json object?
I'm exercising the NetworkX examples found at networkx.lanl.gov/examples Each time I run the weighted_graph

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.