ReflectionExtension::getClassNames

(PHP 5, PHP 7)

ReflectionExtension::getClassNamesGets class names

설명

public array ReflectionExtension::getClassNames ( void )

Gets a listing of class names as defined in the extension.

인수

이 함수는 인수가 없습니다.

반환값

An array of class names, as defined in the extension. If no classes are defined, an empty array is returned.

예제

Example #1 ReflectionExtension::getClassNames() example

<?php
$ext 
= new ReflectionExtension('XMLWriter');
var_dump($ext->getClassNames());
?>

위 예제의 출력 예시:

array(1) {
  [0]=>
  string(9) "XMLWriter"
}

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top