gpt4 book ai didi

php - 获取对象的所有定义函数

转载 作者:可可西里 更新时间:2023-11-01 13:05:10 26 4
gpt4 key购买 nike

有没有等价于get_defined_functions()的哪个只显示给定对象的功能?

示例用法和输出:

class A {
function foo() { }
function bar() { }
}
class B extends A {
function foobar() { }
}
$b = new B();
print_r(get_object_functions($b));

// Array (
// 0 => "foo",
// 1 => "bar",
// 2 => "foobar"
//)

最佳答案

啊,我找到了:

get_class_methods()

关于php - 获取对象的所有定义函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/367545/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com