Is it possible to do something like this:

class foo {
    private $private = 'A';
}

class bar extends foo {
    echo $this->private;
}

bar returns null...

I'd really like it if the variable $private wasn't accessible by the child classes, but I'm unsure that it's even possible based simply on the paradigm of classed based development.

Private properties DO NOT provide the functionality I'm looking for.

I understand that this isn't accurate PHP code, but it's just an example ;)

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

This is how it already works. See the documentation:

The visibility of a property or method can be defined by prefixing the declaration with the keywords public, protected or private. Class members declared public can be accessed everywhere. Members declared protected can be accessed only within the class itself and by inherited and parent classes. Members declared as private may only be accessed by the class that defines the member.

See an example here: http://codepad.org/Yz4yjDft

Private properties DO NOT provide the functionality I'm looking for.

To me seems it is exactly what you want. If not, please elaborate.

link|improve this answer
after a bit of thought - our child class wasn't writing to the parent 'private' property - it was creating its own variable in that namespace because it doesn't know the parent variable exists. we tested it with parent::$private. Fun little case test for me ;) – James Thompson May 8 '11 at 4:25
feedback
class foo {
    protected $private = 'A';
}

class bar extends foo {
    function __construct() {
        echo $this->private;
    }
}
 new bar();

// will echo 'A' 

You just need to do your processing inside a function, you can't have echo just inside you class.

EDIT:

protected will let you use the variable only in descendent classes. if that is what you are looking for

link|improve this answer
And what version of PHP does this? – Jason McCreary May 8 '11 at 2:00
i am sorry see the edit in 2 – Ibu May 8 '11 at 2:02
We're actually looking to hide some variables from developers down the line with extend classes. The approved answer really made the point that hit it on the head. – James Thompson May 9 '11 at 6:28
feedback

Your Answer

 
or
required, but never shown

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