PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

ReflectionType::isBuiltin - Checks if it is a built-in type | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

ReflectionType::isBuiltin

(PHP 7)

ReflectionType::isBuiltinChecks if it is a built-in type

説明

public bool ReflectionType::isBuiltin ( void )

Checks if the type is a built-in type in PHP.

パラメータ

この関数にはパラメータはありません。

返り値

TRUE if it's a built-in type, otherwise FALSE

例1 ReflectionType::isBuiltin() example

<?php
class SomeClass {}

function 
someFunction(string $paramSomeClass $param2StdClass $param3) {}

$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParams $reflectionFunc->getParameters();

var_dump($reflectionParams[0]->getType()->isBuiltin());
var_dump($reflectionParams[1]->getType()->isBuiltin());
var_dump($reflectionParams[2]->getType()->isBuiltin());

上の例の出力は、 たとえば以下のようになります。

bool(true)
bool(false)
bool(false)

Note that the ReflectionType::isBuiltin() method does not distinguish between internal and custom classes. To make this distinction, the ReflectionClass::isInternal() method should be used on the returned class name.

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「ReflectionType::isBuiltin - Checks if it is a built-in type」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | ReflectionType::isBuiltin - Checks if it is a built-in type」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: