Saifullah Alam
Saifullah Alam

Reputation: 301

Equivalent of Python's dir function in PHP

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

Answers (1)

Felk
Felk

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

Related Questions