Reputation: 301
Is there any equivalent method of Python's dir()
in PHP? It would be really nice if I could see what method(s) are associated with a certain data type or class.
Upvotes: 7
Views: 1304
Reputation: 8224
Afaik PHP has no equivalent to just dir
, but you can get such information with functions like get_class_methods
: http://php.net/manual/en/ref.classobj.php
Upvotes: 8