Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have next code. Why field userId is invisible in InheritUser?

class User{
    private $userId;

function User($userId){
    $this->userId = $userId;
}

    function getId(){
        return $this->userId;
    }
}

class InhreritUser extends User{
    function someFunc(){
            echo $this->userId; // nothing
    }
}

someFunc returns nothing:

$inheritUser = new InheritUser(1);
$inheritUser->someFunc();
share|improve this question
2  
Because it's private. That's what private does. If you want visibility only in inheriting classes, mark is as protected – ilias Jan 16 at 21:38

closed as too localized by PeeHaa 埽, tereško, DaveRandom, NullPoiиteя, Madara Uchiha Feb 24 at 14:28

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

up vote 3 down vote accepted

That's the point of the private keyword. If you use protected this will work.

See: http://php.net/language.oop5.visibility

Also, that code would have thrown an error, if you didn't turn off errors in PHP (bad idea during development).

share|improve this answer

It's private. Make it protected instead.

Private fields are accessible to the class only. Protected fields are available to subclasses too.

share|improve this answer

http://php.net/manual/en/language.oop5.visibility.php

A class member needs to be protected for it to be visible to a subclass. Private means that subclasses won't be able to see it.

protected $userId;
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.