Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Method in a class to access an array element

  • 22-04-2015 09:07AM
    #1
    Registered Users, Registered Users 2 Posts: 4,327 ✭✭✭


    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