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