4

I want to browse huge amounts of code written in PHP and it would be useful to have a graphical representation of various classes and their methods.

Do you know of (free) tools making this possible?

akosch
  • 4,326
  • 7
  • 59
  • 80

4 Answers4

3

Try this out http://bouml.free.fr/screenshots.html

Here's other references: PHP UML Generator

Community
  • 1
  • 1
Luca Matteis
  • 29,161
  • 19
  • 114
  • 169
1

Try phpOBrowser.

Thariama
  • 50,002
  • 13
  • 138
  • 166
0

Here's one that let's you paste serialized PHP and displays it in a treeview: https://github.com/jasonhinkle/php-object-browser

Jason
  • 1,726
  • 17
  • 19
0

If you use xDebug you can get visibility of all the objects currently in use at run-time.

I use NetBeans as my dev environment, and xDebug is built into that, so I can step through my code and browse the objects at any point while the code is running.

I don't know if that's the answer you're looking for, but it is a very useful way to see see exactly what's happening with your code.

Spudley
  • 166,037
  • 39
  • 233
  • 307