Object Browser for PHP

I want to look at a huge amount of code written in PHP, and it would be useful to have a graphical representation of the various classes and their methods.

Do you know (free) tools to make this possible?

+4
source share
4 answers
+3
source
+1
source

If you use xDebug, you can get the visibility of all the objects that are currently being used at runtime.

I use NetBeans as my dev environment, and xDebug is built into it, so I can execute my code and view objects at any time while the code is running.

I don’t know if there is the answer you are looking for, but this is a very useful way to see exactly how it goes with your code.

0
source

Here you can insert serialized PHP and display it as a tree: https://github.com/jasonhinkle/php-object-browser

0
source

Source: https://habr.com/ru/post/1332349/


All Articles