📜  PHP | get_class_methods()函数

📅  最后修改于: 2022-05-13 01:56:44.582000             🧑  作者: Mango

PHP | get_class_methods()函数

get_class_methods()函数是PHP中的一个内置函数,用于获取类方法名称。

句法:

array get_class_methods( mixed $class_name )

参数:此函数接受单个参数$class_name ,其中包含类名或对象实例。

返回值:此函数在成功时返回为类定义的方法名称数组,并在出错时返回 NULL。

下面的程序说明了PHP中的 get_class_methods()函数:

方案一:


输出:
Geeks
GeeksforGeeks

方案二:


输出:
Geeks
GeeksforGeeks
G4G

参考: https://www. PHP.net/manual/en/ 函数.get-class-methods。 PHP