(PHP 7, PHP 8)
ReflectionParameter::hasType — 引数が型を持つかを調べる
この関数にはパラメータはありません。
型が指定されていれば 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)