如何保护类属性免于扩展 PHP 中的类?
是否可以做这样的事情:
class foo {
private $private = 'A';
}
class bar extends foo {
echo $this->private;
}
bar returns null...
如果子类无法访问变量 $private ,我真的很喜欢它,但我不确定它是否可能仅基于基于类的开发范例。
私有属性不提供我正在寻找的功能。
我知道这不是准确的 PHP 代码,但这只是一个示例;)
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 ;)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是它已经运作的方式。请参阅文档:
请参阅此处的示例:http://codepad.org/Yz4yjDft
在我看来,这正是你想要的。如果没有,请详细说明。
This is how it already works. See the documentation:
See an example here: http://codepad.org/Yz4yjDft
To me seems it is exactly what you want. If not, please elaborate.
您只需要在函数内进行处理,就不能在类内有 echo 。
编辑:
受保护将允许您仅在后代类中使用该变量。如果这就是您正在寻找的
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