PHP Conference Japan 2024

ReflectionFunctionAbstract 类

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

简介

ReflectionFunction 的父类,请阅读其描述以了解详情。

类概要

abstract class ReflectionFunctionAbstract implements Reflector {
/* 属性 */
public string $name;
/* 方法 */
private __clone(): void
public getAttributes(?string $name = null, int $flags = 0): array
public getEndLine(): int|false
public getName(): string
public inNamespace(): bool
public isClosure(): bool
public isDeprecated(): bool
public isGenerator(): bool
public isInternal(): bool
public isStatic(): bool
public isVariadic(): bool
abstract public __toString(): void
}

属性

name

函数的名称。只读,尝试写入时会抛出 ReflectionException

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top