PHP » PYTHON |
login |
register |
about
|
|
get_declared_classes(PHP 4, PHP 5) get_declared_classes — Returns an array with the name of the defined classes Description
array get_declared_classes
( void
)
Gets the declared classes. Return ValuesReturns an array of the names of the declared classes in the current script.
Examples
Example #1 get_declared_classes() example
<?phpThe above example will output something similar to:
Array
(
[0] => stdClass
[1] => __PHP_Incomplete_Class
[2] => Directory
)
See Also
|
more
Recently updated
more
Most requested
|