PHP Conference Japan 2024

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