ReflectionParameter::isDefaultValueConstant

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

ReflectionParameter::isDefaultValueConstant返回此参数的默认值是否为常量

描述

public ReflectionParameter::isDefaultValueConstant(): bool

返回此参数的默认值是否为常量。

参数

此函数没有参数。

返回值

如果默认值为常量,则返回 true,否则返回 false

参见

添加备注

用户贡献的备注 1 个备注

kristianoye at gmail dot com
9 年前
此方法仅在参数的默认值设置为命名常量时返回 true。例如:

class Foo {
const OPTION_MULTIGET = 1;

// 方法 1
public function setGetOptions($opts=0);

// 方法 2
public function setMultiGetOptions($opts=Foo::OPTION_MULTIGET);
}

方法 1 的第一个 ReflectionParameter 将返回 isDefaultValueConstant() = false(0 是一个“常量”/静态值,但不是命名常量),而方法 2 的将返回 isDefaultValueConsntant() = true。
To Top