ReflectionType::allowsNull
(PHP 7, PHP 8)
ReflectionType::allowsNull — null が許されるかをチェックする
パラメータ
この関数にはパラメータはありません。
例
例1 ReflectionType::allowsNull() の例
<?php
function someFunction(string $param, stdClass $param2 = null) {}
$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParams = $reflectionFunc->getParameters();
var_dump($reflectionParams[0]->getType()->allowsNull());
var_dump($reflectionParams[1]->getType()->allowsNull());
上の例の出力は以下となります。
bool(false) bool(true)
参考
- ReflectionNamedType::isBuiltin() - 組み込みの型であるかを調べる
- ReflectionType::__toString() - 文字列に変換する
- ReflectionParameter::getType() - 引数の型を取得する
+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