PHP | get_declared_classes() Function
November 10, 2020
Hello dear readers! welcome back to another edition of our tutorial on PHP. In this tutorial guide, we are going to be discussing about the get_declared_classes() Function in PHP.
The PHP get_declared_classes() function returns an array of the names of the declared classes in the current script.
The PHP get_declared_classes() function returns an array of the names of the declared classes in the current script.
Syntax
Following below is the syntax to use this function -
get_declared_classes ( void );
RECOMMENDED POST: PHP | get_class() Function
Parameter Details
Sr.No | Parameter & Description |
---|---|
1 | void void means no parameter is required. |
Return Value
It returns an array of names of the declared classes in the current script.
Example
Try out the below example -
<?php print_r(get_declared_classes()); ?>
Output
When the above code is executed, it will produce the following result -
Array ( [0] => stdClass [1] => __PHP_Incomplete_Class [2] => Directory ... ... )
RECOMMEDED POST: PHP | get_class_vars() Function
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial guide, we are going to be discussing about the Function get_declared_interfaces() in PHP.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.