PHP类中protected / private的重要性

前端之家收集整理的这篇文章主要介绍了PHP类中protected / private的重要性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
通常当我看到 PHP类时,大多数变量和函数都是私有的或受保护的.因为PHP是在服务器端执行的,所以我不明白为什么你需要这些安全功能.这些可用于安全还是我遗漏了什么?
visibility的背景下,私有和受保护是有意义的,而不是严格意义上的安全功能.

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.

原文链接:https://www.f2er.com/php/139157.html

猜你在找的PHP相关文章