update : 2015.11.03
php.shukuma.com검색:
|
ReflectionClass::isInstantiable(PHP 5) ReflectionClass::isInstantiable — Checks if the class is instantiable 설명
public bool ReflectionClass::isInstantiable
( void
)
Checks if the class is instantiable. 인수이 함수는 인수가 없습니다. 반환값
성공 시 예제
Example #1 ReflectionClass::isInstantiable() example
<?php 위 예제의 출력: Is C instantiable? bool(true) Is iface instantiable? bool(false) Is ifaceImpl instantiable? bool(true) Is abstractClass instantiable? bool(false) Is D instantiable? bool(true) Is privateConstructor instantiable? bool(false) |