发新话题
打印

ReflectionMethod 类

ReflectionMethod 类

(PHP 5, PHP 7)
ReflectionMethod 类报告了一个方法的有关信息。

属性

name   Method name
class     Class name

ReflectionMethod 修饰符

ReflectionMethod::IS_STATIC

指示一个方法是静态(static)的。

ReflectionMethod::IS_PUBLIC

指示一个方法是 public 的。

ReflectionMethod::IS_PROTECTED

指示一个方法是 protected 的。

ReflectionMethod::IS_PRIVATE

指示一个方法是 private 的。

ReflectionMethod::IS_ABSTRACT

指示一个方法是 abstract 的。

ReflectionMethod::IS_FINAL

指示一个方法是 final 的。

[ 本帖最后由 xiexie 于 2019-3-15 12:04 编辑 ]

TOP

发新话题