ReflectionParameter::hasType

(PHP 7, PHP 8)

ReflectionParameter::hasType检查参数是否具有类型

描述

public ReflectionParameter::hasType(): bool

检查参数是否具有与其关联的类型。

参数

此函数没有参数。

返回值

如果指定了类型,则为 true,否则为 false

示例

示例 #1 ReflectionParameter::hasType() 示例

<?php
function someFunction(string $param, $param2 = null) {}

$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParams = $reflectionFunc->getParameters();

var_dump($reflectionParams[0]->hasType());
var_dump($reflectionParams[1]->hasType());

上面的例子将输出类似于

bool(true)
bool(false)

参见

添加注释

用户贡献的注释

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