获取每个方法的访问/可见性修饰符
有没有办法知道对象内部方法的类型(抱歉,如果这不是正确的名称)?想象一下,你有一个有 5 个方法的对象,其中 3 个是公共的,其余的是受保护的/私有的,你如何知道一个方法是否是公共的?
干杯!
Is there a way to know the type (sorry if this is not the correct name) of a method inside a object? Imagine you have an object with 5 methods, 3 of them being public and the remaining protected / private, how can you know if a method is public?
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用反射来获取有关类和对象的信息。
看看 http://www.php.net/manual/en/book.reflection .php
You can use reflection for getting info about classes and objects.
Look at http://www.php.net/manual/en/book.reflection.php