ReflectionParameter::hasType
(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)
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google