PHP get_declared_interfaces function
Like this blog? Consider exploring one of our sponsored banner ads...
get_declared_interfaces
(PHP 5)
get_declared_interfaces — Returns an array of all declared interfacesDescriptionarray get_declared_interfaces ( void )
Gets the declared interfaces.
Returns an array of the names of the declared interfaces in the current
script.
Example 1. get_declared_interfaces() example
print_r(get_declared_interfaces());
The above example will output
something similar to:
(
[0] => Traversable
[1] => IteratorAggregate
[2] => Iterator
[3] => ArrayAccess
[4] => reflector
[5] => RecursiveIterator
[6] => SeekableIterator
)
See Also
get_declared_classes()
About this entry
You’re currently reading “PHP get_declared_interfaces function,” an entry on BRADINO
- Published:
- 2.26.07 / 1am
- Category:
- PHP Functions
- Tags:
No comments
Jump to comment form | comments rss [?] | trackback uri [?]