Pergunta

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?

Foi útil?

Solução

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

Here's other references: PHP UML Generator

Outras dicas

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.

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top