Monday 26 August 2013

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

ParameterDescription
voidvoid 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
)

No comments:

Post a Comment