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 7129177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T11:12:56+00:00 2026-05-28T11:12:56+00:00

Is it possible to get the value of an overridden NON static member variable

  • 0

Is it possible to get the value of an overridden NON static member variable of a parent class?

I understand that to get the value of a STATIC member variable you use self::$var1 or ClassName::$var1, but how do you get the value of a NON static member variable?

For instance…

class One
{
public $var1 = 'old var';
}

class Two extends One
{
    public $var1 = 'new var';

    public function getOldVar()
    {
        //somehow get old var
    }
}

Thanks so much 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-05-28T11:12:57+00:00Added an answer on May 28, 2026 at 11:12 am

    Nope. Once you’ve overridden a non-static property value it’s gone. You can’t use the parent:: syntax with non-static properties like you can with methods.

    However, using the static keyword you can utilize PHP’s late static binding capabilities to access a static parent property because the static values are bound to the class in which they’re assigned:

    class Top
    {
      public static $prop = 'Parent';
    }
    
    class Child extends Top {
      public static $prop = 'Child';
    
      public static function getParentProp() {
        return parent::$prop;
      }
    
      public static function getProp() {
        return static::$prop;
      }
    }
    
    echo Child::getParentProp(); // outputs "Parent"
    echo Child::getProp();       // outputs "Child"
    

    Note that you cannot override a non-static property with a static one in a child class to achieve what you’re attempting because PHP (and all other scripting languages, I believe) uses the same table to store property names. This is just a limitation of the language.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to get the value from a JavaScript variable and use this
is it possible to get the last value of an string, that looks like
Possible Duplicate: How to get javascript variable value in php I am looking for
I need to get ServletContextResource in class that implements InitializingBean, how is that possible?
Is it possible to get a particular value out of viewstate using JQuery.... I'm
Is it possible to get a return value other than error level from .net
Is it possible to get the 'nth' return value from a function without having
is it possible to get the current max-value of a column, only knowing tableID
Is it possible for an rspec method to get the value of the parameter
I am wondering if its possible to get $(this).scrollTop() value after an anchor jump.

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.