How do I generate UML diagram based on existing classes in PHP?
|
feedback
|
|
I strongly recommend BOUML. It's a free UML modelling application, which:
| |||||||||||||||
feedback
|
|
There's also the PHP UML tool available from pear. PHP_UML:
install it on the command line via:
generate your xmi:
| |||||||||
feedback
|
|
the best (Windows) software i have found to do PHP and UML is Sparx Systems Enterprise Architect. besides a pletora of features, it supports the following for PHP:
not free ($199), but definitely worth the money. | |||||
feedback
|
|
Have you tried Autodia yet? Last time I tried it it wasn't perfect, but it was good enough. | |||
feedback
|
|
There's also php2xmi. You have to do a bit of manual work, but it generates all the classes, so all you have to do is to drag them into a classdiagram in Umbrello. Otherwise, generating a diagram with the use of reflection and graphviz, is fairly simple. I have a snippet over here, that you can use as a starting point. | ||||
|
feedback
|
|
You can use Visual Paradigm for UML. This might not be the best paid (it's US$699) product, just as an option if anyone would like to try. It can create class diagram from PHP and vice versa, and not only PHP, there's a bunch of language you can choose such as C#, C++, Ruby, Java, VB.NET, Python, Objective C, Perl, etc. There's also a trial you can check on. | |||
|
feedback
|
|
Here's how I did it (directly from code to PDF drawing without manual drawing of anything):
Here's an example of suitable command line for using fdp to output PDF diagram (assuming that dot file generated by argouml-graphviz XLST processing is saved as xmi-model.dot):
As an alternative you could try PHP_UML or php2xmi instead of BOUML for doing the "reverse engineering" part. I haven't yet tried that. (I'm using the phrase "reverse engineering" because it seems that UML people are using those words when they mean extracting class and method information from the source code. I would personally interpret those words as extracting information from executable binary file or captured raw wire data.) If you prefer drawing the class diagram by hand (instead of using computer to do all the drawing), you can use either BOUML or ArgoUML for the drawing. Using the "reverse engineered" data via BOUML will help in that case. | |||
|
feedback
|
|
If you are looking to generate UML easily from your existing PHP Classes you might want to consider PHPStorm 3.0 IDE. It does a good job of replicating existing code into UML.PHP STORM FEATURE LIST | |||
|
feedback
|