Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Method in a class to access an array element

Options
  • 22-04-2015 9:07am
    #1
    Registered Users Posts: 4,037 ✭✭✭


    I am trying to write a very simple class and include a getter method to return an array element. My code is below. I must stress I am new to PHP.
    The function I am using to get the value in the array is getArrayElement
    The error I am getting is:
    Notice: Undefined variable: guys in C:\XAMPP\htdocs\lab6\exercise3.php on line 10

    Fatal error: Cannot access empty property in C:\XAMPP\htdocs\lab6\exercise3.php on line 10

    Thanks for any replies.

    [PHP]
    <?php

    class myFirstClass
    {
    public $guys = array("mike","pete","larry","pam");
    public $t;
    public function getArrayElement($arrIndex)
    {
    $t =$arrIndex;
    return $this->$guys[$t];


    }

    }


    $fc = new myFirstClass();


    echo $fc->getArrayElement(3);




    ?>



    [/PHP]


Comments

Advertisement