Learning PHP
Advanced PHP
PHP Function Reference
PHP Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
PHP Function get_declared_classes()
Syntax
get_declared_classes ( void );
|
Definition and Usage
Returns an array of the names of the declared classes in the current script.
Paramters
Parameter | Description |
void | void means no parameter is required. |
Return Value
Returns an array of the names of the declared classes in the current script.
Example
Following is the usage of this function:
<?php
print_r(get_declared_classes());
?>
|
It will produce following result:
Array
(
[0] => stdClass
[1] => __PHP_Incomplete_Class
[2] => Directory
)
|
|
|
|