update : 2015.11.03
php.shukuma.com검색:
|
ReflectionType::isBuiltin(PHP 7) ReflectionType::isBuiltin — Checks if it is a built-in type 설명
public bool ReflectionType::isBuiltin
( void
)
Checks if the type is a built-in type in PHP. 인수이 함수는 인수가 없습니다. 반환값
예제
Example #1 ReflectionType::isBuiltin() example
<?php 위 예제의 출력 예시: 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. 참고
|