(PHP 7, PHP 8)
ReflectionParameter::hasType — 检查参数是否具有类型
此函数没有参数。
示例 #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)