获取每个方法的访问/可见性修饰符

发布于 2024-12-02 03:27:07 字数 111 浏览 2 评论 0原文

有没有办法知道对象内部方法的类型(抱歉,如果这不是正确的名称)?想象一下,你有一个有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

始终不够爱げ你 2024-12-09 03:27:07

您可以使用反射来获取有关类和对象的信息。
看看 http://www.php.net/manual/en/book.reflection .php

$reflection = new ReflectionClass('TestClass');
$aMethods = $reflection->getMethods(); 
var_dump($aMethods[0]->isPublic());

You can use reflection for getting info about classes and objects.
Look at http://www.php.net/manual/en/book.reflection.php

$reflection = new ReflectionClass('TestClass');
$aMethods = $reflection->getMethods(); 
var_dump($aMethods[0]->isPublic());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文